Infrastructurey sorts of files
Getty Ritter
8 years ago
1 | name: inf-dict | |
2 | version: 0.1.0.0 | |
3 | -- synopsis: | |
4 | -- description: | |
5 | license: BSD3 | |
6 | license-file: LICENSE | |
7 | author: Getty Ritter <gettylefou@gmail.com> | |
8 | maintainer: Getty Ritter <gettylefou@gmail.com> | |
9 | copyright: ©2016 Getty Ritter | |
10 | -- category: | |
11 | build-type: Simple | |
12 | cabal-version: >= 1.12 | |
13 | ||
14 | executable inf-dict | |
15 | hs-source-dirs: src | |
16 | main-is: Main.hs | |
17 | other-modules: Types, Render | |
18 | default-extensions: OverloadedStrings, | |
19 | ScopedTypeVariables | |
20 | ghc-options: -Wall | |
21 | build-depends: base >=4.7 && <4.9, | |
22 | Spock, | |
23 | lucid, | |
24 | sqlite-simple, | |
25 | text, | |
26 | errors, | |
27 | aeson, | |
28 | transformers, | |
29 | http-types, | |
30 | wai-middleware-static | |
31 | default-language: Haskell2010 |