forked from haskell-infra/hl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhl.cabal
78 lines (77 loc) · 2.77 KB
/
hl.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
name: hl
version: 0.0.0
synopsis: Haskell web site.
description: Haskell web site.
license: BSD3
license-file: LICENSE
author: Chris Done
maintainer: chrisdone@gmail.com
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
executable hl
hs-source-dirs: src/
ghc-options: -Wall
-O2
-fno-warn-type-defaults
main-is: Main.hs
build-depends: base >= 4 && < 5
, blaze-builder
, blaze-html
, blaze-markup
, bytestring
, conduit
, conduit-extra
, deepseq
, directory
, fast-logger
, filepath
, foreign-store
, hscolour
, http-conduit
, lifted-base
, lucid
, markdown
, monad-extras
, mtl
, pandoc
, pandoc-types
, resourcet
, spoon
, tagstream-conduit
, text
, text-icu
, transformers
, wai-logger
, warp
, xml-conduit
, yesod
, yesod-core
, yesod-static