-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclearingstelle.cabal
101 lines (90 loc) · 3.69 KB
/
clearingstelle.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: clearingstelle
version: 3.1.3
license: BSD3
license-file: LICENSE
author: Markus Barenhoff <[email protected]>
maintainer: Markus Barenhoff <[email protected]>
synopsis: The clearingstelle of the pirateparty
description: The clearingstelle of the pirateparty
category: Web
stability: Experimental
cabal-version: >= 1.6
build-type: Simple
homepage: http://github.com/alios/clearingstelle
Flag production
Description: Build the production executable.
Default: False
Flag devel
Description: Build for use with "yesod devel"
Default: False
library
if flag(devel)
Buildable: True
else
Buildable: False
exposed-modules: Application
other-modules: Foundation
Import
Model
Model.Keys
Settings
Settings.StaticFiles
Handler.Root
Handler.Clearingstelle
ghc-options: -Wall -threaded -O0
extensions: TemplateHaskell
QuasiQuotes
OverloadedStrings
NoImplicitPrelude
CPP
OverloadedStrings
MultiParamTypeClasses
TypeFamilies
GADTs
GeneralizedNewtypeDeriving
FlexibleContexts
executable clearingstelle
if flag(devel)
Buildable: False
if flag(production)
cpp-options: -DPRODUCTION
ghc-options: -Wall -threaded -O2
else
ghc-options: -Wall -threaded -O0
main-is: main.hs
extensions: TemplateHaskell
QuasiQuotes
OverloadedStrings
NoImplicitPrelude
CPP
OverloadedStrings
MultiParamTypeClasses
TypeFamilies
GADTs
GeneralizedNewtypeDeriving
FlexibleContexts
build-depends: base >= 4 && < 5
, yesod >= 0.9.3.4 && < 0.10
, yesod-core >= 0.9.3 && < 0.10
, yesod-auth >= 0.7.3 && < 0.8
, yesod-static >= 0.3.1 && < 0.4
, yesod-default >= 0.4 && < 0.5
, yesod-form >= 0.3.4 && < 0.4
, mime-mail >= 0.4 && < 0.5
, clientsession >= 0.7.3 && < 0.8
, bytestring >= 0.9 && < 0.10
, text >= 0.11 && < 0.12
, persistent >= 0.6.2 && < 0.7
, persistent-postgresql >= 0.6 && < 0.7
, template-haskell
, hamlet >= 0.10 && < 0.11
, shakespeare-css >= 0.10 && < 0.11
, shakespeare-js >= 0.10 && < 0.11
, shakespeare-text >= 0.10 && < 0.11
, hjsmin >= 0.0.14 && < 0.1
, monad-control == 0.3.*
, random
, split >= 0.1.4 && < 0.1.5
, parsec >= 3.1 && < 3.2
, transformers >= 0.2 && < 0.3
, time >= 1.2 && < 1.3