-
Notifications
You must be signed in to change notification settings - Fork 5
/
dockercook.cabal
60 lines (58 loc) · 2.5 KB
/
dockercook.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
name: dockercook
version: 0.1.0.0
synopsis: A build tool for multiple docker image layers
description: Build and manage multiple docker image layers to speed up deployment
license: MIT
license-file: LICENSE
author: Alexander Thiemann
maintainer: thiemann@factisresearch.com
copyright: (c) 2014 factis research GmbH
category: Development
build-type: Simple
cabal-version: >=1.8
executable dockercook
main-is: Main.hs
-- other-modules:
build-depends: base ==4.6.*,
attoparsec >=0.11 && <0.12,
base16-bytestring >=0.1 && <0.2,
bytestring >=0.10 && <0.11,
conduit >=1.1 && <1.2,
cryptohash >=0.11 && <0.12,
directory >=1.2 && <1.3,
filepath >=1.3 && <1.4,
conduit-combinators >=0.2 && <0.3,
conduit-extra >=1.1 && <1.2,
resourcet >=1.1 && <1.2,
regex-compat >=0.95 && <0.96,
optparse-applicative >=0.8 && <0.9,
process >=1.1 && <1.2,
system-filepath >=0.4 && <0.5,
temporary >=1.2 && <1.3,
text >=1.1 && <1.2,
transformers >= 0.3 && <0.4
hs-source-dirs: src
ghc-options: -Wall -fno-warn-orphans -fno-warn-missing-signatures
test-suite dockercook-test
type: exitcode-stdio-1.0
hs-source-dirs: src
main-is: Tests.hs
-- other-modules: Tests.Routing
build-depends: HTF ==0.11.*,
base ==4.6.*,
attoparsec >=0.11 && <0.12,
base16-bytestring >=0.1 && <0.2,
bytestring >=0.10 && <0.11,
conduit,
conduit-combinators,
conduit-extra,
resourcet,
cryptohash >=0.11 && <0.12,
directory >=1.2 && <1.3,
filepath >=1.3 && <1.4,
optparse-applicative >=0.8 && <0.9,
process >=1.1 && <1.2,
system-filepath >=0.4 && <0.5,
temporary >=1.2 && <1.3,
text >=1.1 && <1.2
ghc-options: -Wall -fno-warn-orphans