-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.yaml
65 lines (57 loc) · 1.25 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
name: calz
version: 0.9.2.0
github: jez/calz
license: MIT
author: Jake Zimmerman
maintainer: [email protected]
copyright: 2018 Jake Zimmerman
extra-source-files:
- README.md
- LICENSE
# Metadata used when publishing your package
synopsis: Like the Unix cal program, but better
description: Please see the README on Github at <https://github.com/jez/calz#readme>
category: System
ghc-options:
- -Wall
- -Wcompat
- -Wmissing-signatures
- -Werror
- -funbox-strict-fields
# TODO(jez) Remove this option once https://github.com/haskell/cabal/issues/4739 is fixed
- -optP-Wno-nonportable-include-path
- -O2
dependencies:
- base >= 4.7 && < 5
- docopt
- time
- parsec
- monadplus
- split
- mtl
- text
- prettyprinter
- prettyprinter-ansi-terminal
library:
source-dirs: src
executables:
calz:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- calz
tests:
calz-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- calz
- hspec