-
Notifications
You must be signed in to change notification settings - Fork 0
/
sneathlane-haste.cabal
executable file
·28 lines (26 loc) · 1.16 KB
/
sneathlane-haste.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
-- Initial sneathlane-haste.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: sneathlane-haste
version: 2
synopsis: A compositional web UI library, which draws to a Canvas element
description: A simple library for construction UIs in the browser. Uses Haste to compile to JS and a Canvas element to draw the UI to the page. A UI can be written using ordinary Monadic combinators.
homepage: http://sneathlane.com
license: BSD2
license-file: LICENSE
author: Jason Priestley
maintainer: [email protected]
-- copyright:
category: GUI
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: SneathLane, SneathLane.Graphics, SneathLane.Widget, SneathLane.BasicWidgets
if impl(haste)
build-depends: base >=4.0 && <5, haste-lib >=0.5 && <0.6
haste-options: --link-jslib
else
build-depends: base >=4.0 && <5, haste-compiler >=0.5 && <0.6
ghc-options:
other-extensions: KindSignatures, GADTs, OverloadedStrings
default-language: Haskell2010