-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
134 lines (126 loc) · 2.95 KB
/
package.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
name: clerk
version: 0.2.0.3
github: "deemp/clerk"
license: BSD3
author: "Danila Danko, Nickolay Kudasov"
maintainer: "Danila Danko"
copyright: "Danila Danko, Nickolay Kudasov"
category: "spreadsheet"
synopsis: "Declaratively describe spreadsheets"
extra-source-files:
- README.md
- CHANGELOG.md
# Metadata used when publishing your package
# synopsis: Short description of your package
# category: value
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description: |
`clerk` provides a Haskell library for declaratively describing the spreadsheets.
`clerk` is built on top of the [xlsx](https://hackage.haskell.org/package/xlsx) package
and extends upon the [work](https://youtu.be/1xGoa-zEOrQ) of Nickolay Kudasov.
See the [README](https://github.com/deemp/clerk#readme) for an example of `clerk` usage and further info.
dependencies:
- base >= 4.9 && < 5.0
ghc-options:
- -Wall
- -Wno-unticked-promoted-constructors
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wno-unticked-promoted-constructors
- -Wredundant-constraints
- -Wunused-packages
tests:
docs:
main: test/Docs.hs
dependencies:
- lima
- text
- string-interpolate
default-extensions:
- ImportQualifiedPost
- QuasiQuotes
- ScopedTypeVariables
- OverloadedStrings
library:
source-dirs: src
dependencies:
- bytestring
- containers
- data-default
- microlens
- mtl
- text
- time
- transformers
- xlsx
- first-class-families
- generic-lens
when:
- condition: false
other-modules: Paths_clerk
default-extensions:
- ConstraintKinds
- DataKinds
- DeriveAnyClass
- DeriveGeneric
- DerivingVia
- DuplicateRecordFields
- FlexibleContexts
- FlexibleInstances
- GADTs
- GeneralizedNewtypeDeriving
- InstanceSigs
- KindSignatures
- MultiParamTypeClasses
- NamedFieldPuns
- OverloadedStrings
- PolyKinds
- QuantifiedConstraints
- RankNTypes
- RecordWildCards
- ScopedTypeVariables
- StandaloneDeriving
- TupleSections
- TypeApplications
- TypeFamilies
- TypeOperators
- UndecidableInstances
- ViewPatterns
executables:
example1:
main: Examples/Example1.hs
dependencies:
- clerk
- microlens
- text
- data-default
example2:
main: Examples/Example2.hs
dependencies: &example2
- clerk
- microlens
- text
- xlsx
example3:
main: Examples/Example3.hs
dependencies: *example2
example4:
main: Examples/Example4.hs
dependencies:
- clerk
- xlsx
- transformers
- mtl
example5:
main: Examples/Example5.hs
dependencies:
- clerk
- xlsx
- transformers
- mtl
- time
- text
- lens