-
Notifications
You must be signed in to change notification settings - Fork 4
/
leksah-server.cabal
305 lines (281 loc) · 8.95 KB
/
leksah-server.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
cabal-version: 1.24
name: leksah-server
version: 0.17.0.0
build-type: Simple
license: GPL
license-file: LICENSE
copyright: 2007-2011 Juergen Nicklisch-Franken, Hamish Mackenzie
maintainer: [email protected]
stability: provisional
homepage: http://leksah.org
package-url: http://code.haskell.org/leksah-collector
bug-reports: http://code.google.com/p/leksah/issues/list
synopsis: Metadata collection for leksah
description:
The interface to GHC-API for leksah
category: IDE
author: Juergen "jutaro" Nicklisch-Franken, Hamish Mackenzie
tested-with: GHC ==8.2.1 GHC ==8.0.2
data-files:
data/prefscoll.lkshp
data/leksah-metadata.nix
source-repository head
type: git
location: https://github.com/leksah/leksah-server
flag threaded
description:
Build with support for multithreaded execution
flag network-uri
description:
Get Network.URI from the network-uri package
library
if !impl(ghcjs -any)
if impl(ghc >=8.10)
build-depends:
haddock-api >=2.24.0 && <2.25,
haddock-library >=1.9.0 && <1.11,
ghc-boot >=8.10.1 && <8.11
else
if impl(ghc >=8.8)
build-depends:
haddock-api >=2.23.0 && <2.24,
haddock-library >=1.8.0 && <1.9,
ghc-boot >=8.8.1 && <8.9
else
if impl(ghc >=8.6)
build-depends:
haddock-api >=2.22.0 && <2.23,
haddock-library >=1.7.0 && <1.8,
ghc-boot >=8.6.1 && <8.7
else
if impl(ghc >=8.4)
build-depends:
haddock-api >=2.20.0 && <2.21,
haddock-library >=1.6.0 && <1.7,
ghc-boot >=8.4.1 && <8.5
else
if impl(ghc >=8.2)
build-depends:
haddock-api >=2.18.1 && <2.19,
haddock-library >=1.4.1 && <1.5,
ghc-boot >=8.2.1 && <8.3
else
build-depends:
haddock-api >=2.17.2 && <2.18,
haddock-library >=1.4.1 && <1.5,
ghc-boot >=8.0.1 && <8.1
if os(windows)
build-depends:
Win32 >=2.2.0.0 && <2.7
extra-libraries:
kernel32
else
build-depends:
unix >=2.3.1.0 && <2.8
if flag(network-uri)
build-depends:
network-uri >=2.6 && <2.7,
network >=2.6 && <3.2
else
build-depends:
network >=2.2 && <2.6
if !impl(ghcjs -any)
build-depends:
ghc >=7.0.4 && <8.11
exposed-modules:
IDE.Core.CTypes
IDE.Core.Serializable
IDE.HeaderParser
IDE.Metainfo.PackageCollector
IDE.Metainfo.SourceCollectorH
IDE.Metainfo.SourceDB
IDE.Metainfo.WorkspaceCollector
IDE.StrippedPrefs
IDE.Utils.CabalPlan
IDE.Utils.CabalProject
IDE.Utils.FileUtils
IDE.Utils.GHCUtils
IDE.Utils.Project
IDE.Utils.Server
IDE.Utils.Tool
IDE.Utils.Utils
IDE.Utils.VersionUtils
build-depends:
Cabal >=1.24 && <3.3,
base >=4.0.0.0 && <4.15,
binary >=0.5.0.0 && <0.9,
binary-shared >=0.8 && <0.9,
bytestring >=0.9.0.1 && <0.11,
containers >=0.2.0.0 && <0.7,
executable-path >=0.0.3 && <0.1,
directory >=1.0.0.2 && <1.4,
filepath >=1.1.0.1 && <1.5,
parsec >=3.0.0.0 && <3.2,
pretty >=1.0.1.0 && <1.2,
time >=1.1 && <1.10,
deepseq >=1.1 && <1.5,
hslogger >=1.0.7 && <1.4,
conduit >=1.0.8 && <1.4,
conduit-extra >=1.0.0.1 && <1.4,
resourcet -any,
attoparsec >=0.10.0.3 && <0.14,
transformers >=0.2.2.0 && <0.6,
strict >=0.3.2 && <0.5,
text >=0.11.3.1 && <1.3,
HTTP >=4000.1.2 && <4000.4,
process >=1.1 && <1.7,
base-compat >=0.10.0 && <0.12,
aeson >=1.1.2.0 && <1.6,
aeson-pretty >=0.8.7 && <0.9,
data-default >=0.7.1.1 && <0.8
default-language: Haskell2010
hs-source-dirs: src
other-modules:
IDE.Metainfo.InterfaceCollector
Paths_leksah_server
ghc-options: -Wall -ferror-spans
executable leksah-server
if !impl(ghcjs -any)
if impl(ghc >=8.10)
build-depends:
haddock-api >=2.24.0 && <2.25,
haddock-library >=1.9.0 && <1.11,
ghc-boot >=8.10.1 && <8.11
else
if impl(ghc >=8.8)
build-depends:
haddock-api >=2.23.0 && <2.24,
haddock-library >=1.8.0 && <1.9,
ghc-boot >=8.8.1 && <8.9
else
if impl(ghc >=8.6)
build-depends:
haddock-api >=2.22.0 && <2.23,
haddock-library >=1.7.0 && <1.8,
ghc-boot >=8.6.1 && <8.7
else
if impl(ghc >=8.4)
build-depends:
haddock-api >=2.20.0 && <2.21,
haddock-library >=1.6.0 && <1.7,
ghc-boot >=8.4.1 && <8.5
else
if impl(ghc >=8.2)
build-depends:
haddock-api >=2.18.1 && <2.19,
haddock-library >=1.4.1 && <1.5,
ghc-boot >=8.2.1 && <8.3
else
build-depends:
haddock-api >=2.17.2 && <2.18,
haddock-library >=1.4.1 && <1.5,
ghc-boot >=8.0.1 && <8.1
if os(windows)
build-depends:
Win32 >=2.2.0.0 && <2.7
extra-libraries:
kernel32
else
build-depends:
unix >=2.3.1.0 && <2.8
if flag(network-uri)
build-depends:
network-uri >=2.6 && <2.7,
network >=2.6 && <3.2
else
build-depends:
network >=2.2 && <2.6
if os(osx)
ghc-options: -optl-headerpad_max_install_names
if flag(threaded)
ghc-options: -threaded
if !impl(ghcjs -any)
build-depends:
ghc >=7.0.4 && <8.11
main-is: Collector.hs
build-depends:
Cabal >=1.24 && <3.3,
base >=4.0.0.0 && <4.15,
binary >=0.5.0.0 && <0.9,
binary-shared >=0.8 && <0.9,
bytestring >=0.9.0.1 && <0.11,
containers >=0.2.0.0 && <0.7,
executable-path >=0.0.3 && <0.1,
directory >=1.0.0.2 && <1.4,
filepath >=1.1.0.1 && <1.5,
parsec >=3.0.0.0 && <3.2,
pretty >=1.0.1.0 && <1.2,
time >=1.1 && <1.10,
deepseq >=1.1 && <1.5,
hslogger >=1.0.7 && <1.4,
conduit >=1.0.8 && <1.4,
conduit-extra >=1.0.0.1 && <1.4,
resourcet -any,
attoparsec >=0.10.0.3 && <0.14,
transformers >=0.2.2.0 && <0.6,
strict >=0.3.2 && <0.5,
text >=0.11.3.1 && <1.3,
HTTP >=4000.1.2 && <4000.4,
process >=1.1 && <1.7,
leksah-server -any,
base-compat >=0.10.0 && <0.12,
data-default >=0.7.1.1 && <0.8
default-language: Haskell2010
hs-source-dirs: main
ghc-options: -rtsopts -Wall -ferror-spans
executable leksahecho
if !os(windows)
build-depends:
unix >=2.3.1.0 && <2.8
if os(osx)
ghc-options: -optl-headerpad_max_install_names
if flag(threaded)
ghc-options: -threaded
main-is: LeksahEcho.hs
build-depends:
base >=4.0.0.0 && <4.15,
hslogger >=1.0.7 && <1.4,
deepseq >=1.1 && <1.5,
bytestring >=0.9.0.1 && <0.11,
conduit >=1.0.8 && <1.4,
conduit-extra >=1.0.0.1 && <1.4,
resourcet -any,
attoparsec >=0.10.0.3 && <0.14,
transformers >=0.2.2.0 && <0.6,
text >=0.11.3.1 && <1.3,
process >=1.1 && <1.7,
leksah-server -any,
data-default >=0.7.1.1 && <0.8
default-language: Haskell2010
hs-source-dirs: main
ghc-options: -Wall -ferror-spans
executable leksahtrue
main-is: LeksahTrue.hs
build-depends:
base >=4.0.0.0 && <4.15,
data-default >=0.7.1.1 && <0.8
default-language: Haskell2010
hs-source-dirs: main
test-suite test-tool
if !impl(ghcjs -any)
build-depends:
doctest >=0.11.0 && <0.18
type: exitcode-stdio-1.0
main-is: TestTool.hs
build-depends:
base >=4.0.0.0 && <4.15,
hslogger >=1.0.7 && <1.4,
leksah-server -any,
HUnit >=1.2 && <1.7,
transformers >=0.2.2.0 && <0.6,
conduit >=1.0.8 && <1.4,
conduit-extra >=1.0.0.1 && <1.4,
resourcet -any,
process >=1.1 && <1.7,
directory >=1.0.0.2 && <1.4,
filepath >=1.1.0.1 && <1.5,
text >=0.11.3.1 && <1.3,
data-default >=0.7.1.1 && <0.8
default-language: Haskell2010
hs-source-dirs: tests
ghc-options: -Wall -ferror-spans