forked from input-output-hk/iohk-ops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iohk-ops.cabal
132 lines (125 loc) · 3.96 KB
/
iohk-ops.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
-- Initial iohk-nixops.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: iohk-ops
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD3
author: Input Output HK
maintainer: [email protected]
-- copyright:
category: Development
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: common
default-language: Haskell2010
default-extensions: OverloadedStrings
exposed-modules: Appveyor
, Arch
, Buildkite.API
, CommandLineUtils
, Constants
, Github
, InstallerVersions
, NixOps
, RunCardano
, Types
, UpdateLogic
, Utils
other-modules: Cardano
, Nix
, Topology
build-depends: base
, aeson
, aeson-pretty
, amazonka
, amazonka-s3
, ansi-terminal
, bytestring
, cassava
, containers
, cryptonite
, directory
, dns
, errors
, exceptions
, foldl
, hourglass
, http-client
, http-client-tls
, http-conduit
, http-types
, lens
, lens-aeson
, memory
, network-uri
, optional-args
, optparse-applicative
, resourcet
, safe
, system-filepath
, text
, turtle
, unordered-containers
, utf8-string
, vector
, yaml
executable iohk-ops
main-is: iohk-ops.hs
default-language: Haskell2010
default-extensions: OverloadedStrings
other-modules: UpdateProposal
build-depends: aeson
, base
, bytestring
, containers
, foldl
, hourglass
, iohk-ops
, optional-args
, optparse-applicative
, process
, system-filepath
, text
, time
, turtle
, unordered-containers
, yaml
test-suite iohk-ops-test
main-is: Spec.hs
default-language: Haskell2010
default-extensions: OverloadedStrings, RecordWildCards
type: exitcode-stdio-1.0
other-modules: AppveyorSpec
, Buildkite.Pipeline
, BuildkiteSpec
, UpdateLogicSpec
, UpdateProposal
, UpdateProposalSpec
build-depends: base
, iohk-ops
, aeson
, bytestring
, foldl
, hspec
, optparse-applicative
, process
, system-filepath
, text
, time
, mtl
, turtle
, unordered-containers
, yaml
hs-source-dirs: test .
executable iohk-ops-integration-test
main-is: IntegrationTest.hs
default-language: Haskell2010
build-depends: base
, hspec
, iohk-ops
, managed
, turtle
hs-source-dirs: test .