-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfay-server.cabal
59 lines (57 loc) · 1.75 KB
/
fay-server.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
name: fay-server
version: 0.1.0.0
synopsis: A web service for compiling Fay code.
description: A web service for compiling Fay code.
homepage: http://fay-lang.org/
license: BSD3
license-file: LICENSE
author: Chris Done
maintainer: chrisdone@gmail.com
copyright: 2012 Chris Done
category: Web
build-type: Custom
cabal-version: >=1.8
library
ghc-options: -Wall -O2
hs-source-dirs: src
exposed-modules: Client
build-depends: base > 4 && < 5,
fay == 0.18.*,
snap-server,
snap-core,
utf8-string,
bytestring,
aeson,
mtl,
process,
safe,
split,
uuid,
filepath,
directory,
data-default,
haskell-src-exts,
strict,
ghc-paths
executable fay-server
ghc-options: -Wall -O2
main-is: Main.hs
hs-source-dirs: src
build-depends: base,
fay == 0.18.*,
snap-server,
snap-core,
utf8-string,
bytestring,
aeson,
mtl,
process,
safe,
split,
uuid,
filepath,
directory,
data-default,
haskell-src-exts,
strict,
ghc-paths