-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.yaml
112 lines (107 loc) · 1.76 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
name: haskellers
author: Michael Snoyman
maintainer: Michael Snoyman
license: BSD3
homepage: https://www.haskellers.com/
github: snoyberg/haskellers
flags:
library-only:
description: Build for use with "yesod devel"
manual: false
default: false
dev:
description: Turn on development settings, like auto-reload templates.
manual: false
default: false
default-extensions:
- TemplateHaskell
- QuasiQuotes
- OverloadedStrings
- NoImplicitPrelude
- CPP
- MultiParamTypeClasses
- TypeFamilies
- GADTs
- GeneralizedNewtypeDeriving
- FlexibleContexts
- EmptyDataDecls
- NoMonomorphismRestriction
- ViewPatterns
dependencies:
- base
- yesod
- yesod-core
- yesod-auth
- yesod-auth-fb
- yesod-auth-oauth2
- yesod-fb
- yesod-static
- yesod-form
- yesod-form-richtext
- yesod-newsfeed
- yesod-test
- clientsession
- bytestring
- text
- persistent
- persistent-postgresql
- template-haskell
- shakespeare
- hjsmin
- monad-control
- wai-extra
- yaml
- http-conduit
- directory
- warp
- blaze-html
- data-default
- time
- transformers
- containers
- old-locale
- stm
- fb
- http-types
- blaze-builder
- text-icu
- random-shuffle
- random
- pureMD5
- utf8-string
- cryptocipher
- base64-bytestring
- mime-mail
- mime-mail-ses
- resourcet
- monad-logger
- aeson
- cipher-aes
- yesod-gitrev
- unordered-containers
- unliftio
library:
source-dirs: src
when:
- condition: (flag(dev)) || (flag(library-only))
then:
ghc-options:
- -Wall
- -O0
cpp-options: -DDEVELOPMENT
else:
ghc-options:
- -Wall
- -O2
executables:
haskellers:
main: main.hs
source-dirs: app
ghc-options:
- -threaded
- -O2
dependencies:
- haskellers
when:
- condition: flag(library-only)
buildable: false