-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcinder.cabal
46 lines (44 loc) · 1.37 KB
/
cinder.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
name: cinder
version: 0.4
synopsis: HTML and SVG Manipulation library for Fay
description: HTML and SVG Manipulation library for Fay
homepage: https://github.com/crooney/cinder
bug-reports: https://github.com/crooney/cinder/issues
license: BSD3
license-file: LICENSE
author: Christopher Rooney
copyright: 2013-2014 Christopher Rooney
category: Web, Fay
build-type: Simple
cabal-version: >=1.8
extra-source-files:
LICENSE
README.md
CHANGELOG.md
data-files: src/Cinder/DOM.hs
src/Cinder/SVG.hs
src/Cinder/HTML.hs
src/Cinder/HTML/Attributes.hs
src/Cinder/HTML/Elements.hs
src/Cinder/SVG/Attributes.hs
src/Cinder/SVG/Elements.hs
src/Cinder/DSL.hs
src/Control/Fay.hs
source-repository head
type: git
location: https://github.com/crooney/cinder
library
hs-source-dirs: src
exposed-modules: Cinder.DOM
Cinder.SVG
Cinder.HTML
Cinder.HTML.Attributes
Cinder.HTML.Elements
Cinder.SVG.Attributes
Cinder.SVG.Elements
Cinder.DSL
Control.Fay
ghc-options: -Wall
build-depends:
fay-base >= 0.19,
fay-text >= 0.3