-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathambiata-tine.cabal
97 lines (82 loc) · 3.24 KB
/
ambiata-tine.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
name: ambiata-tine
version: 0.0.1
license: BSD3
author: Ambiata <[email protected]>
maintainer: Ambiata <[email protected]>
copyright: (c) 2015 Ambiata.
synopsis: Combinators for process
category: System
cabal-version: >= 1.8
build-type: Custom
description: Combinators for process
library
build-depends:
base >= 3 && < 5
, ambiata-p
, ambiata-twine
, ambiata-x-eithert
, async >= 2.0 && < 2.2
, bytestring == 0.10.*
, conduit == 1.2.*
, conduit-extra == 1.1.*
, exceptions >= 0.6 && < 0.9
, lens >= 4.8 && < 4.16
, process >= 1.2 && < 1.5
, text == 1.2.*
, template-haskell
, transformers >= 0.3 && < 0.6
, time >= 1.4 && < 1.9
, unix == 2.7.*
ghc-options:
-Wall
if impl(ghc >= 8.0)
ghc-options: -fno-warn-redundant-constraints
hs-source-dirs:
src
exposed-modules:
Tine.Conduit
Tine.Data
Tine.Process
test-suite test
type: exitcode-stdio-1.0
main-is: test.hs
ghc-options: -Wall -threaded -O2
hs-source-dirs:
test
build-depends:
base >= 3 && < 5
, ambiata-disorder-core
, ambiata-disorder-corpus
, ambiata-p
, ambiata-tine
, ambiata-twine
, ambiata-x-eithert
, conduit
, text
, time
, process
, QuickCheck
, quickcheck-instances == 0.3.*
, unix
test-suite test-io
type: exitcode-stdio-1.0
main-is: test-io.hs
ghc-options: -Wall -threaded -O2
hs-source-dirs:
test
build-depends:
base >= 3 && < 5
, ambiata-disorder-core
, ambiata-disorder-corpus
, exceptions
, ambiata-p
, ambiata-tine
, ambiata-twine
, ambiata-x-eithert
, conduit
, process
, text
, time
, QuickCheck
, quickcheck-instances == 0.3.*
, unix