-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
49 lines (41 loc) · 963 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
name: GadtParser
version: 0.1.0.0
#synopsis:
#description:
homepage: https://github.com/CarstenKoenig/GadtParser#readme
license: BSD3
author: Carsten Koenig
maintainer: Carsten.Koenig@hotmail.de
copyright: 2019 Carsten Koenig
category: Web
extra-source-files:
- README.md
dependencies:
- base >= 4.7 && < 5
- megaparsec
ghc-options:
-Wall
library:
source-dirs: src/lib
executables:
GadtParser:
source-dirs: src/exe
main: Main.hs
dependencies:
- GadtParser
tests:
spec:
main: Spec.hs
source-dirs: test/specs
dependencies:
- hspec
- GadtParser
verbatim:
build-tool-depends:
hspec-discover:hspec-discover == 2.*
doctest:
main: DocTest.hs
source-dirs: test/doctests
dependencies:
- doctest
- doctest-discover