forked from haskell-lang/haskell-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
haskell-lang.cabal
194 lines (189 loc) · 6.48 KB
/
haskell-lang.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
name: haskell-lang
version: 0.0.0
synopsis: Haskell web site.
description: Haskell web site.
license: BSD3
license-file: LICENSE
author: Chris Done
maintainer: [email protected]
copyright: 2014 Chris Done
category: Web
build-type: Simple
cabal-version: >=1.8
data-files: static/css/*.css
static/css/*.min.css
static/fonts/Haskell.dev.svg
static/fonts/Haskell.eot
static/fonts/Haskell.svg
static/fonts/Haskell.ttf
static/fonts/Haskell.woff
static/fonts/glyphicons-halflings-regular.ttf
static/fonts/glyphicons-halflings-regular.svg
static/fonts/glyphicons-halflings-regular.eot
static/fonts/glyphicons-halflings-regular.woff
static/css/haskell.font.css
static/img/*.ico
static/img/*.jpg
static/img/*.png
static/img/*.svg
static/js/*.js
static/js/*.min.js
static/js/jquery.console.js
static/js/jquery.cookie.js
static/js/tryhaskell.pages.js
static/js/warp.reload.js
static/markdown/*.md
static/report/haskell2010/*.css
static/report/haskell2010/*.html
static/report/haskell2010/*.png
flag library-only
default: False
description: Do not build the executable
manual: True
library
hs-source-dirs: src/
ghc-options: -Wall
-O2
-fno-warn-type-defaults
build-depends: base >= 4 && < 5
, aeson
, async
, blaze-builder
, blaze-html
, blaze-markup
, bytestring
, conduit
, conduit-extra
, deepseq
, directory
, exceptions
, fast-logger
, filepath
, foreign-store
, hscolour
, http-conduit
, http-types
, lucid
, markdown
, monad-extras
, mtl
, pandoc
, pandoc-types
, resourcet
, spoon
, tagstream-conduit
, text
, containers
, time
, transformers
, unliftio
, unliftio-core
, vector
, wai-logger
, warp
, xml-conduit
, yaml
, yesod
, yesod-core
, yesod-gitrev
, yesod-static
, yesod-newsfeed
, yesod-sitemap
, split
, random
, safe-exceptions
, network-uri
exposed-modules: HL.Controller
HL.Controller.Community
HL.Controller.Deprecated
HL.Controller.Documentation
HL.Controller.GetStarted
HL.Controller.Html
HL.Controller.Intero
HL.Controller.Tutorial
HL.Controller.Announcements
HL.Controller.Home
HL.Controller.Irc
HL.Controller.MailingLists
HL.Controller.Markdown
HL.Controller.Packages
HL.Controller.Feed
HL.Controller.Standard
HL.Controller.SuccessStories
HL.Controller.Redirects
HL.Dispatch
HL.Foundation
HL.Main
HL.Model.Markdown
HL.Model.Packages
HL.Model.Snippets
HL.Model.Tutorial
HL.Static
HL.Types
HL.View
HL.View.Code
HL.View.Community
HL.View.Documentation
HL.View.GetStarted
HL.View.Announcements
HL.View.Home
HL.View.Home.Features
HL.View.Home.Whyhaskell
HL.View.Markdown
HL.View.Template
HL.View.Packages
Paths_haskell_lang
Yesod.Caching
Yesod.Lucid
Yesod.Slug
executable haskell-lang
hs-source-dirs: app/
ghc-options: -Wall
-O2
-threaded
main-is: Main.hs
build-depends: base >= 4 && < 5
, haskell-lang
if flag(library-only)
buildable: False
test-suite haskell-lang-test
type: exitcode-stdio-1.0
main-is: test/Main.hs
build-depends: base
, haskell-lang
, hspec
, text
, bytestring
, conduit
, conduit-extra
, filepath
, resourcet
, transformers
, yesod-static
, blaze-builder
, yesod-gitrev
, yesod-core
, yesod-newsfeed
, markdown
, blaze-html
, blaze-markup
, lucid
, hscolour
, containers
, aeson
, directory
, vector
, yaml
, yesod
, http-conduit
, safe-exceptions
, wai-logger
, fast-logger
, mtl
, time
, monad-extras
, network-uri
, spiderweb
, warp
, unliftio
, rio