-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyesod-skeleton.cabal
51 lines (44 loc) · 1.67 KB
/
yesod-skeleton.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
name: yesod-skeleton
version: 0.0.0
license: BSD3
author: Harri Salokorpi
category: Web
stability: Experimental
cabal-version: >= 1.10
build-type: Simple
Flag production
Description: Build the production executable.
Default: False
Flag devel
Description: Build for use with "yesod devel"
Default: False
executable yesod-skeleton
if flag(devel)
Buildable: False
if flag(production)
cpp-options: -DPRODUCTION
ghc-options: -Wall -threaded -O2
else
ghc-options: -Wall -threaded -O0
hs-source-dirs: src/
main-is: YesodSkeleton/main.hs
default-language: Haskell2010
default-extensions:
TemplateHaskell
QuasiQuotes
GeneralizedNewtypeDeriving
OverloadedStrings
CPP
OverloadedStrings
MultiParamTypeClasses
TypeFamilies
build-depends: base >= 4 && < 5
, yesod >= 1.0.1.1 && < 1.1
, yesod-core >= 1.0.1 && < 1.1
, clientsession >= 0.7.3.1 && < 0.8
, bytestring >= 0.9.1.4 && < 0.10
, text >= 0.11 && < 0.12
, template-haskell
, shakespeare-text >= 1.0.0 && < 1.1
, wai >= 1.2 && < 1.3
, transformers >= 0.2.2 && < 0.3