forked from chrisdone-archive/tryhaskell
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtryhaskell.cabal
76 lines (73 loc) · 2.64 KB
/
tryhaskell.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
name: tryhaskell
version: 0.0
synopsis: Try Haskell!
description: Try Haskell!
license: BSD3
license-file: LICENSE
author: Chris Done
maintainer: chrisdone@gmail.com
copyright: 2014 Chris Done
category: Education
build-type: Simple
cabal-version: >=1.8
data-files: Imports.hs
static/css/fonts/Haskell.dev.svg
static/css/fonts/Haskell.eot
static/css/fonts/Haskell.svg
static/css/fonts/Haskell.ttf
static/css/fonts/Haskell.woff
static/css/tryhaskell.css
static/css/tutorial.css
static/css/tutorial1.css
static/css/tutorial2.css
static/css/tutorial31.css
static/css/tutorial32.css
static/js/jquery.console.js
static/js/tryhaskell.js
static/js/tryhaskell.pages.js
static/js/tutorial1.js
static/js/tutorial1.pages.js
static/js/tutorial2.js
static/js/tutorial2.pages.js
static/js/tutorial31.js
static/js/tutorial31.pages.js
static/js/tutorial32.js
static/js/tutorial32.pages.js
library
exposed-modules: TryHaskell
other-modules: Paths_tryhaskell, TryHaskell.BuildPage, TryHaskell.Tutorials
hs-source-dirs: src/
ghc-options: -Wall -rtsopts
build-depends: QuickCheck
, aeson >= 0.8.0.1
, base >= 4 && < 5
, bifunctors
, blaze
, bytestring >= 0.10.4.0
, containers
, foreign-store
, hashable
, lucid >= 2.6
, mtl
, mueval
, old-locale
, process-extras
, pure-io
, safe
, show
, snap-core
, snap-server
, text
, time
, unordered-containers
, lrucache
executable tryhaskell
hs-source-dirs: src/main
main-is: Main.hs
build-depends: base, tryhaskell
ghc-options: -O2 -rtsopts -threaded -fno-warn-deprecations
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: src/test
build-depends: base, tryhaskell