-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.yaml
46 lines (41 loc) · 1.02 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
name: stack-tag
version: 0.2.0
license: MIT
license-file: LICENSE
github: "creichert/stack-tag"
author: "Christopher & Cody Reichert (Reichert Brothers)"
maintainer: "[email protected]"
copyright: "2018 Reichert Brothers"
synopsis: Create etags for Haskell projects based on Stack snapshots
extra-source-files:
- README.md
dependencies:
- base >= 4.7 && < 5
- mtl
- process
- containers
- directory
- text
- async
- hasktags
library:
source-dirs: src
ghc-options:
- -Wall
- -fno-warn-unused-do-bind
- -fwarn-incomplete-uni-patterns
- -fwarn-incomplete-record-updates
executables:
stack-tag:
main: app/Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -fno-warn-unused-do-bind
- -fwarn-incomplete-uni-patterns
- -fwarn-incomplete-record-updates
dependencies:
- stack-tag
- optparse-applicative