-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.yaml
76 lines (70 loc) · 1.27 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
name: curator
version: 2.0.0.0
ghc-options:
- -optP-Wno-nonportable-include-path # workaround [Filename case on macOS · Issue #4739 · haskell/cabal](https://github.com/haskell/cabal/issues/4739)
dependencies:
- base >=4.10 && < 5
- http-client
- http-client-tls
- pantry
- path
- path-io
- rio
- rio-prettyprint
- yaml
default-extensions:
- TypeOperators
library:
source-dirs: src
exposed-modules:
- Curator
- Curator.Snapshot
dependencies:
- Cabal
- aeson
- bytestring
- conduit
- tar
executables:
curator:
ghc-options: -threaded
source-dirs: app-curator
main: Main.hs
dependencies:
- curator
- http-download
- optparse-simple
casa-curator:
ghc-options: -threaded
main: Main.hs
source-dirs: app-casa-curator
dependencies:
- bytestring
- curator
- casa-client
- conduit
- persistent
- rio-orphans
- lens
- resourcet
- optparse-applicative
- text
- optparse-simple
- containers
- aeson
- http-conduit
- syb
- persistent-sqlite
- persistent-template
- time
- monad-logger
tests:
spec:
source-dirs: test
main: Spec.hs
dependencies:
- Cabal
- curator
- containers
- hspec
- text