-
Notifications
You must be signed in to change notification settings - Fork 0
/
triviaskell.cabal
45 lines (41 loc) · 1.34 KB
/
triviaskell.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
name: triviaskell
version: 0.0.1
synopsis: My awesome trivia app
homepage: https://github.com/mLuby/triviaskell
license: MIT
author: Mike Luby
maintainer: [email protected]
category: Web
build-type: Simple
cabal-version: >=1.8
library
hs-source-dirs: src
exposed-modules: Server
build-depends: base,
monad-logger,
persistent,
persistent-mysql,
persistent-template,
random,
resourcet,
scotty,
text,
transformers,
wai-extra,
aeson
executable trivia
hs-source-dirs: app
main-is: Main.hs
build-depends: base,
triviaskell
ghc-options: -W -Wall -Werror
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base,
triviaskell
ghc-options: -W -Wall -Werror
source-repository head
type: git
location: https://github.com/mLuby/triviaskell