summaryrefslogtreecommitdiff
path: root/package.yaml
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2019-07-29 20:16:37 -0400
committerAndrew Cady <d@jerkface.net>2019-07-29 21:04:09 -0400
commita26aa4918ce8e508a9847b2eb3ddae786aed44d6 (patch)
treea5635210d991d3d6163fd2e2bd0873db908056ed /package.yaml
parent53386343424dcd1ebac3740e072ae87291b7bb06 (diff)
add some haskell
this is a "hello world" http server that runs on 8080
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