-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.yaml
82 lines (78 loc) · 1.35 KB
/
package.yaml
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
name: yesodweb
author: Michael Snoyman
maintainer: Michael Snoyman
license: BSD3
default-extensions:
- TemplateHaskell
- QuasiQuotes
- OverloadedStrings
- NoImplicitPrelude
- CPP
- OverloadedStrings
- MultiParamTypeClasses
- TypeFamilies
- GADTs
- GeneralizedNewtypeDeriving
- FlexibleContexts
- PatternGuards
- ViewPatterns
dependencies:
- base >=4 && <5
- yesod >=1.2
- yesod-core >=1.2
- yesod-static >=1.2
- yesod-form >=1.2
- yesod-newsfeed >=1.2
- bytestring >=0.9
- text >=0.11
- template-haskell
- shakespeare
- wai-extra >=2.0
- yaml >=0.8
- blaze-html >=0.7
- conduit >=0.5.2.1
- conduit-extra
- resourcet >=0.3
- xss-sanitize >=0.3.1
- attoparsec >=0.10
- data-default
- xml-conduit >=1.0
- time
- http-types >=0.7
- containers
- simple-sendfile >=0.2.1
- unix
- transformers
- process
- pureMD5
- wai-app-static
- markdown
- html-conduit
- classy-prelude
- rio
library:
source-dirs: src
executables:
yesodweb:
main: Main.hs
source-dirs: app
dependencies:
- yesodweb
when:
- condition: flag(dev)
then:
ghc-options:
- -Wall
- -threaded
- -O0
cpp-options: -DDEVELOPMENT
else:
ghc-options:
- -Wall
- -threaded
- -O2
flags:
dev:
description: Turn on development settings, like auto-reload templates.
manual: false
default: false