forked from sol/hpack
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.yaml
57 lines (52 loc) · 967 Bytes
/
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
name: hpack-convert
version: '1.0.1'
synopsis: Convert Cabal manifests into hpack's package.yamls
maintainer: Pedro Tacla Yamada <[email protected]>
license: MIT
github: yamadapc/hpack-convert
category: Development
ghc-options: -Wall -fcontext-stack=100
extra-source-files:
- ./test/data/**/*
dependencies:
- base >= 4.7 && < 5
- base-compat >= 0.8
- Cabal >= 1.22
- pretty
- deepseq
- directory
- filepath
- Glob
- text
- containers
- unordered-containers >= 0.2.7.1
- yaml
- bytestring
- vector
- aeson
- split
library:
source-dirs: src
dependencies:
exposed-modules:
- Hpack.Convert
executables:
hpack-convert:
main: Main.hs
source-dirs:
- driver
- src
tests:
spec:
cpp-options: -DTEST
main: Spec.hs
source-dirs:
- test
- src
dependencies:
- hspec == 2.*
- QuickCheck
- temporary
- mockery >= 0.3
- interpolate
- aeson-qq