-
Notifications
You must be signed in to change notification settings - Fork 7
/
hplayground.cabal
46 lines (39 loc) · 1.41 KB
/
hplayground.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
name: hplayground
version: 0.1.2.9
cabal-version: >=1.8
build-type: Simple
license: BSD3
license-file: LICENSE
maintainer: [email protected]
stability: experimental
homepage: https://github.com/agocorona/hplayground
bug-reports: https://github.com/agocorona/hplayground/issues
synopsis: monadic, reactive Formlets running in the Web browser
description: client-side haskell framework that compiles to javascript with the haste compiler. See homepage
category: Web
author: Alberto Gomez Corona
data-dir: ""
extra-source-files: src/Main.hs src/Main.html
source-repository head
type: git
location: http://github.com/agocorona/hplayground
flag haste-inst
Description: either if it is being compiled with haste-inst or with cabal
Default: False
library
if flag(haste-inst)
build-depends: base >4.0 && <5, transformers -any, containers -any,
data-default -any, monads-tf -any, haste-lib -any,
haste-perch >= 0.1.0.5
exposed: True
buildable: True
else
build-depends: base >4.0 && <5, transformers -any, containers -any,
data-default -any, monads-tf -any, haste-compiler -any,
haste-perch >= 0.1.0.5
exposed: True
buildable: True
exposed-modules: Haste.HPlay.View Haste.HPlay.Cell, Haste.HPlay.WebSockets
exposed: True
buildable: True
hs-source-dirs: src .