forked from ngless-toolkit/ngless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNGLess.cabal
More file actions
121 lines (119 loc) · 3.09 KB
/
NGLess.cabal
File metadata and controls
121 lines (119 loc) · 3.09 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
name: NGLess
version: 0.0.0
-- synopsis:
-- description:
license: MIT
license-file: COPYING
author: Luis Pedro Coelho and Paulo Monteiro
maintainer: luis@luispedro.org
-- copyright:
category: Domain Specific Language
build-type: Simple
-- extra-source-files:
cabal-version: >=1.18.0.3
executable ngless
main-is: Main.hs
ghc-options: -Wall -fwarn-tabs -fno-warn-missing-signatures -threaded -O2
-- other-modules:
C-sources: NGLess/Dependencies/embedded.c
default-extensions: BangPatterns, OverloadedStrings, LambdaCase
other-extensions: DeriveDataTypeable, TemplateHaskell
build-depends:
aeson == 0.8.*,
ansi-terminal == 0.6.*,
base,
bytestring == 0.10.*,
bzlib == 0.5.*,
cmdargs == 0.10.*,
conduit >= 1.2 && < 1.3,
conduit-extra >= 1.1 && < 1.2,
conduit-combinators == 1.0.*,
configurator == 0.3.*,
containers == 0.5.*,
convertible == 1.1.*,
deepseq >= 1.3,
directory == 1.2.*,
filepath >= 1.3,
file-embed >= 0.0.8,
hashable == 1.2.*,
hashtables == 1.2.*,
-- happy >= 1.17,
http-conduit >= 2.0,
IntervalMap == 0.4.*,
mtl == 2.2.*,
MissingH == 1.3.*,
network == 2.6.*,
parsec == 3.1.*,
primitive == 0.6.*,
process == 1.2.* && >= 1.2.3,
old-locale,
random == 1.1.*,
stm-conduit == 2.6.*,
resourcet >= 1.1 && < 1.2,
tar == 0.4.2.*,
template-haskell,
text == 1.2.*,
time >= 1.5,
transformers == 0.4.*,
unix == 2.7.*,
vector >= 0.10,
yaml,
zlib
hs-source-dirs: NGLess/
default-language: Haskell2010
Test-Suite nglesstest
type: exitcode-stdio-1.0
main-is: Tests.hs
ghc-options: -Wall -fwarn-tabs -fno-warn-missing-signatures -threaded -O2
-- other-modules:
C-sources: NGLess/Dependencies/embedded.c
default-extensions: BangPatterns, OverloadedStrings, LambdaCase
other-extensions: DeriveDataTypeable, TupleSections, TemplateHaskell
build-depends:
aeson == 0.8.*,
ansi-terminal == 0.6.*,
base,
bytestring == 0.10.*,
bzlib == 0.5.*,
cmdargs == 0.10.*,
conduit >= 1.2 && < 1.3,
conduit-extra >= 1.1 && < 1.2,
conduit-combinators == 1.0.*,
configurator == 0.3.*,
containers == 0.5.*,
convertible == 1.1.*,
deepseq >= 1.4,
directory == 1.2.*,
filepath >= 1.4,
file-embed >= 0.0.8,
hashable == 1.2.*,
hashtables == 1.2.*,
http-conduit >= 2.0,
-- happy >= 1.17,
HUnit == 1.2.*,
IntervalMap == 0.4.*,
MissingH == 1.3.*,
mtl == 2.2.*,
network == 2.6.*,
parsec == 3.1.*,
primitive == 0.6.*,
process == 1.2.*,
random == 1.1.*,
resourcet >= 1.1 && < 1.2,
stm-conduit == 2.6.*,
streaming-commons >= 0.1.12,
tar == 0.4.2.*,
template-haskell,
test-framework == 0.8.*,
test-framework-hunit,
test-framework-quickcheck2,
test-framework-th,
text == 1.2.*,
time >= 1.5,
transformers == 0.4.*,
unix == 2.7.*,
vector == 0.10.*,
yaml,
zlib
hs-source-dirs: NGLess/
default-language: Haskell2010