Mercurial > hg > wordplay
comparison jotto/jotto.cabal @ 2:3fcf9e52cbfa
boilerplate generated with `stack new`
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 24 Dec 2017 12:37:27 -0800 |
parents | |
children | 8ef628eff167 |
comparison
equal
deleted
inserted
replaced
1:6fa43276f012 | 2:3fcf9e52cbfa |
---|---|
1 -- This file has been generated from package.yaml by hpack version 0.14.1. | |
2 -- | |
3 -- see: https://github.com/sol/hpack | |
4 | |
5 name: jotto | |
6 version: 0.1.0.0 | |
7 synopsis: jotto word game | |
8 description: Play Jotto in Haskell! | |
9 homepage: https://github.com/k0s/wordplay#readme | |
10 bug-reports: https://github.com/k0s/wordplay/issues | |
11 author: Jeff Hammel | |
12 maintainer: k0scist@gmail.com | |
13 copyright: 2017 Jeff Hammel | |
14 license: BSD3 | |
15 license-file: LICENSE | |
16 build-type: Simple | |
17 cabal-version: >= 1.10 | |
18 | |
19 extra-source-files: | |
20 ChangeLog.md | |
21 README.md | |
22 | |
23 source-repository head | |
24 type: git | |
25 location: https://github.com/k0s/wordplay | |
26 | |
27 library | |
28 hs-source-dirs: | |
29 src | |
30 build-depends: | |
31 base >= 4.7 && < 5 | |
32 exposed-modules: | |
33 Lib | |
34 default-language: Haskell2010 | |
35 | |
36 executable jotto-exe | |
37 main-is: Main.hs | |
38 hs-source-dirs: | |
39 app | |
40 ghc-options: -threaded -rtsopts -with-rtsopts=-N | |
41 build-depends: | |
42 base >= 4.7 && < 5 | |
43 , jotto | |
44 default-language: Haskell2010 | |
45 | |
46 test-suite jotto-test | |
47 type: exitcode-stdio-1.0 | |
48 main-is: Spec.hs | |
49 hs-source-dirs: | |
50 test | |
51 ghc-options: -threaded -rtsopts -with-rtsopts=-N | |
52 build-depends: | |
53 base >= 4.7 && < 5 | |
54 , jotto | |
55 default-language: Haskell2010 |