diff options
Diffstat (limited to 'sequence.cabal')
-rw-r--r-- | sequence.cabal | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sequence.cabal b/sequence.cabal new file mode 100644 index 0000000..948b8b1 --- /dev/null +++ b/sequence.cabal | |||
@@ -0,0 +1,33 @@ | |||
1 | -- Initial sequence.cabal generated by cabal init. For further | ||
2 | -- documentation, see http://haskell.org/cabal/users-guide/ | ||
3 | |||
4 | name: sequence | ||
5 | version: 0.0.0 | ||
6 | synopsis: A tracker for combat sequences in Contact (a pen&paper rpg by Uhrwerk) | ||
7 | -- description: | ||
8 | license: GPL-3 | ||
9 | license-file: LICENSE | ||
10 | author: Gregor Kleen | ||
11 | maintainer: gkleen@yggdrasil.li | ||
12 | -- copyright: | ||
13 | category: Game | ||
14 | build-type: Simple | ||
15 | -- extra-source-files: | ||
16 | cabal-version: >=1.10 | ||
17 | |||
18 | executable sequence | ||
19 | main-is: Main.hs | ||
20 | -- other-modules: | ||
21 | -- other-extensions: | ||
22 | build-depends: base >=4.8 && <5 | ||
23 | , mtl | ||
24 | , transformers | ||
25 | , readline | ||
26 | , pqueue | ||
27 | , text | ||
28 | , case-insensitive | ||
29 | , containers | ||
30 | , lens | ||
31 | , data-default-class | ||
32 | hs-source-dirs: src | ||
33 | default-language: Haskell2010 \ No newline at end of file | ||