-
Notifications
You must be signed in to change notification settings - Fork 19
/
mafia.cabal
250 lines (215 loc) · 9.03 KB
/
mafia.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
name: mafia
version: 0.0.1
license: BSD3
license-file: LICENSE
author: Ambiata <info@ambiata.com>
maintainer: Tim McGilchrist <timmcgil@gmail.com>, Erik de Castro Lopo <erikd@mega-nerd.com>
copyright: (c) 2015 Ambiata.
homepage: https://github.com/haskell-mafia/mafia
Bug-reports: https://github.com/haskell-mafia/mafia/issues
synopsis: mafia
category: Development
cabal-version: >= 1.24
build-type: Custom
description: Mafia is a light weight but opinionated wrapper around Cabal that makes working
on Haskell projects fun and easy.
tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/haskell-mafia/mafia.git
custom-setup
setup-depends:
base >= 4.9 && < 5
, Cabal >= 1.24 && < 2.5
library
build-depends:
base >= 4.9 && < 5
, aeson >= 0.8 && < 0.12
, async == 2.2.*
, attoparsec >= 0.12 && < 0.14
, base16-bytestring == 0.1.*
, bytestring == 0.10.*
, Cabal >= 2.0 && < 2.5
, case-insensitive == 1.2.*
, containers == 0.5.*
, cryptonite == 0.15.*
, directory >= 1.2 && < 1.4
, exceptions == 0.8.*
, entwine == 0.0.4
, filelock == 0.1.*
, filepath == 1.4.*
, ghc-prim >= 0.4.0 && <= 0.6
, monad-loops == 0.4.*
, memory >= 0.12 && < 0.15
, optparse-applicative >= 0.14 && < 0.15
, parallel == 3.2.*
, process >= 1.5 && < 1.7
, retry == 0.7.*
, SafeSemaphore == 0.10.*
, stm >= 2.4 && < 2.6
, tar >= 0.4 && < 0.6
, temporary == 1.2.*
, text == 1.2.*
, time >= 1.4 && < 1.9
, time-locale-compat == 0.1.*
, transformers >= 0.4 && < 0.6
, transformers-bifunctors == 0.1.*
, transformers-either == 0.1.*
, unix == 2.7.*
default-language:
Haskell2010
ghc-options:
-Wall
hs-source-dirs:
src
exposed-modules:
Mafia.Bin
Mafia.Cabal
Mafia.Cabal.Constraint
Mafia.Cabal.Dependencies
Mafia.Cabal.Index
Mafia.Cabal.Package
Mafia.Cabal.Process
Mafia.Cabal.Sandbox
Mafia.Cabal.Types
Mafia.Cabal.Version
Mafia.Cache
Mafia.Catch
Mafia.Error
Mafia.Flock
Mafia.Ghc
Mafia.Git
Mafia.Hash
Mafia.Home
Mafia.Hoogle
Mafia.IO
Mafia.Include
Mafia.Init
Mafia.Install
Mafia.Lock
Mafia.Makefile
Mafia.Options.Applicative
Mafia.P
Mafia.Package
Mafia.Path
Mafia.Process
Mafia.Script
Mafia.Submodule
Mafia.Tree
Paths_mafia
executable mafia
default-language:
Haskell2010
ghc-options:
-Wall -threaded
-rtsopts
hs-source-dirs:
gen
main-is:
../main/mafia.hs
other-modules:
BuildInfo_mafia
DependencyInfo_mafia
autogen-modules:
BuildInfo_mafia
DependencyInfo_mafia
build-depends:
base
, mafia
, bytestring == 0.10.*
, containers == 0.5.*
, directory >= 1.2 && < 1.4
, filepath == 1.4.*
, optparse-applicative >= 0.11 && < 0.15
, text == 1.2.*
, time >= 1.4 && < 1.9
, time-locale-compat == 0.1.*
, transformers >= 0.4 && < 0.6
, transformers-bifunctors == 0.1.*
, transformers-either == 0.1.*
test-suite test
type:
exitcode-stdio-1.0
main-is:
test.hs
default-language:
Haskell2010
ghc-options:
-Wall
hs-source-dirs:
test
other-modules:
Test.Mafia.Arbitrary
Test.Mafia.Cabal.Constraint
Test.Mafia.Cabal.Dependencies
Test.Mafia.Cabal.Types
Test.Mafia.Hoogle
Test.Mafia.Package
Test.Mafia.Process
Test.Mafia.Main
Test.Mafia.Tripping
build-depends:
base >= 4.9 && < 5
, mafia
, directory >= 1.2 && < 1.4
, process >= 1.5 && < 1.7
, QuickCheck == 2.8.*
, quickcheck-instances == 0.3.*
, text
, transformers >= 0.4 && < 0.6
, hedgehog-corpus >= 0.1 && < 0.2
test-suite test-io
type:
exitcode-stdio-1.0
main-is:
test-io.hs
default-language:
Haskell2010
ghc-options:
-Wall
hs-source-dirs:
test
other-modules:
Test.IO.Mafia.Chaos
Test.IO.Mafia.Flock
Test.Mafia.IO
Test.Mafia.Main
build-depends:
base >= 4.9 && < 5
, mafia
, async == 2.2.*
, containers == 0.5.*
, directory >= 1.2 && < 1.4
, exceptions == 0.8.*
, process >= 1.5 && < 1.7
, QuickCheck == 2.8.*
, quickcheck-instances == 0.3.*
, temporary == 1.2.*
, text == 1.2.*
, transformers >= 0.4 && < 0.6
, transformers-bifunctors
, transformers-either
, hedgehog-corpus >= 0.1 && < 0.2
test-suite test-cli
type:
exitcode-stdio-1.0
main-is:
test-cli.hs
other-modules:
Test.Mafia.IO
Test.Mafia.Main
default-language:
Haskell2010
ghc-options:
-Wall
hs-source-dirs:
test
build-depends:
base >= 4.9 && < 5
, mafia
, directory >= 1.2 && < 1.4
, process >= 1.5 && < 1.7
, QuickCheck == 2.8.*
, transformers >= 0.4 && < 0.6