-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
58 lines (51 loc) · 1.33 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
name: etch
version: 0.1.0.0
github: "shockkolate/etch"
license: Apache-2.0
author: "David Farrell"
maintainer: "David Farrell <[email protected]>"
copyright: "2017-2018 David Farrell"
extra-source-files:
- README.md
- ChangeLog.md
# Metadata used when publishing your package
# synopsis: Short description of your package
category: Code Generation
# 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: Please see the README on GitHub at <https://github.com/shockkolate/etch#readme>
dependencies:
- base >= 4.7 && < 5
- text
- bytestring >= 0.10
- unordered-containers
- mtl >= 2.2
- lens >= 4.16
- attoparsec >= 0.13
- llvm-hs >= 7.0
- llvm-hs-pure >= 7.0
- pretty-show >= 1.6
library:
source-dirs: src
executables:
etchy:
main: Main.hs
source-dirs: etchy
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- pretty-show >= 1.6
- etch
tests:
etch-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- etch