forked from chrisdone-archive/tryhaskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tryhaskell.cabal
63 lines (60 loc) · 1.96 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
name: tryhaskell
version: 0.0
synopsis: Try Haskell!
description: Try Haskell!
license: BSD3
license-file: LICENSE
author: Chris Done
maintainer: [email protected]
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/js/jquery.console.js
static/js/tryhaskell.js
static/js/tryhaskell.pages.js
library
exposed-modules: TryHaskell
other-modules: Paths_tryhaskell
hs-source-dirs: src/
ghc-options: -Wall
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: -Wall -O2 -threaded
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: src/test
build-depends: base, tryhaskell