-
Notifications
You must be signed in to change notification settings - Fork 2
/
nikls.cabal
55 lines (52 loc) · 1.74 KB
/
nikls.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: nikls
version: 0.0.0.0
synopsis: Nikls Is Kinda Like Scred
description: See README.md
homepage: https://github.com/opqdonut/nikls#readme
license: AllRightsReserved
author: Joel Kaasinen
maintainer: joel.kaasinen@gmail.com
copyright: 2016 Joel Kaasinen
category: Web
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
build-depends: base >= 4.7 && < 5
, aeson
, bytestring
, containers
, servant == 0.9.1.1
, servant-server == 0.9.1.1
, sqlite-simple
, text
, transformers
, wai
, wai-cors
, wai-middleware-static
, wai-extra
, warp
exposed-modules: Server Model Api Render Db
executable nikls
hs-source-dirs: app
default-language: Haskell2010
main-is: Main.hs
ghc-options: -Wall
build-depends: base >= 4.7 && < 5
, nikls
test-suite test
type: exitcode-stdio-1.0
main-is: Test.hs
ghc-options: -Wall
build-depends: base >= 4.7 && < 5
, QuickCheck
, HUnit
, test-framework
, test-framework-quickcheck2
, test-framework-hunit
, nikls
, containers
hs-source-dirs: test
default-language: Haskell2010