-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnoise.cabal
74 lines (69 loc) · 1.73 KB
/
noise.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
64
65
66
67
68
69
70
71
72
73
74
name: noise
version: 0.0.1
synopsis: A friendly language for graphic design
description: A friendly language for graphic design
license: MIT
license-file: LICENSE
author: Tom Brow
copyright: Tom Brow
maintainer: Tom Brow <[email protected]>
category: Text
build-type: Simple
cabal-version: >=1.8
homepage: http://github.com/brow/noise
bug-reports: http://github.com/brow/noise/issues
extra-source-files:
README.md
source-repository head
type: git
location: git://github.com/brow/noise.git
library
ghc-options: -Wall
hs-source-dirs: src
build-depends:
base ==4.*,
blaze-markup ==0.5.*,
blaze-svg ==0.3.*,
bytestring >=0.9,
containers >=0.4,
cryptohash ==0.8.*,
network ==2.*,
parsec ==3.1.*
exposed-modules:
Text.Noise.Compiler
Text.Noise.Compiler.Document
Text.Noise.Compiler.Document.Color
Text.Noise.Error
Text.Noise.Parser
Text.Noise.Parser.AST
Text.Noise.Parser.Character
Text.Noise.Renderer
Text.Noise.SourceRange
other-modules:
Text.Noise.Compiler.Builtin
Text.Noise.Compiler.Error
Text.Noise.Compiler.Function
Text.Noise.Parser.Token.Internal
Text.Noise.Parser.Language
Text.Noise.Parser.Token
Text.Noise.Renderer.SVG.Attributes
executable noise
ghc-options: -Wall
hs-source-dirs: src-cli
main-is: Main.hs
build-depends:
base ==4.*,
noise
test-suite test
ghc-options: -Wall
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Main.hs
build-depends:
HTF ==0.11.*,
HUnit ==1.2.*,
QuickCheck ==2.5.*,
base ==4.*,
parsec ==3.1.*,
string-qq ==0.0.*,
noise