summaryrefslogtreecommitdiff
path: root/package.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'package.yaml')
-rw-r--r--package.yaml40
1 files changed, 40 insertions, 0 deletions
diff --git a/package.yaml b/package.yaml
new file mode 100644
index 0000000..002ad71
--- /dev/null
+++ b/package.yaml
@@ -0,0 +1,40 @@
1name: anomic
2version: 0.1.0.0
3github: "afcady/anomic"
4author: "Andrew Cady"
5maintainer: "d@jerkface.net"
6copyright: "AllRightsReserved"
7description: A game of Nomic
8
9dependencies:
10- base >= 4.7 && < 5
11- rebase
12- servant-server
13
14ghc-options: -W -Wall -O2
15
16library:
17 source-dirs: src
18
19executables:
20 anomic:
21 main: anomic.hs
22 source-dirs: .
23 ghc-options:
24 - -threaded
25 - -rtsopts
26 - -with-rtsopts=-N
27 dependencies:
28 - anomic
29 - warp
30
31tests:
32 anomic-test:
33 main: Spec.hs
34 source-dirs: test
35 ghc-options:
36 - -threaded
37 - -rtsopts
38 - -with-rtsopts=-N
39 dependencies:
40 - anomic