Changed path to repo and readme
[advent-of-code-16.git] / adventofcode1614 / adventofcode1614.cabal
1 name: adventofcode1614
2 version: 0.1.0.0
3 synopsis: Initial project template from stack
4 description: Please see README.md
5 homepage: https://git.njae.me.uk/?p=advent-of-code-16.git;a=blob_plain;f=README.html
6 license: BSD3
7 license-file: LICENSE
8 author: Neil Smith
9 maintainer: noone@njae.me.uk
10 copyright: 2016 Neil Smith
11 category: None
12 build-type: Simple
13 extra-source-files: README.md
14 cabal-version: >=1.10
15
16 library
17 hs-source-dirs: src
18 build-depends: base >= 4.7 && < 5
19 default-language: Haskell2010
20
21 executable advent14
22 hs-source-dirs: app
23 main-is: advent14.hs
24 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
25 build-depends: base
26 , adventofcode1614
27 , adventofcode16
28 , MissingH
29 default-language: Haskell2010
30
31 executable advent14c
32 hs-source-dirs: app
33 main-is: advent14c.hs
34 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
35 build-depends: base
36 , adventofcode1614
37 , adventofcode16
38 , bytestring
39 , cryptonite
40 default-language: Haskell2010
41
42 executable advent14parallel
43 hs-source-dirs: app
44 main-is: advent14parallel.hs
45 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
46 build-depends: base
47 , adventofcode1614
48 , adventofcode16
49 , parallel
50 , bytestring
51 , cryptonite
52 default-language: Haskell2010
53
54 test-suite adventofcode1614-test
55 type: exitcode-stdio-1.0
56 hs-source-dirs: test
57 main-is: Spec.hs
58 build-depends: base
59 , adventofcode1614
60 , adventofcode16
61 , split
62 ghc-options: -threaded -rtsopts -with-rtsopts=-N
63 default-language: Haskell2010
64
65 source-repository head
66 type: git
67 location: git@git.njae.me.uk:advent-of-code-16