-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccess.cabal
More file actions
149 lines (143 loc) · 2.74 KB
/
access.cabal
File metadata and controls
149 lines (143 loc) · 2.74 KB
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
author:
Geraud Boyer
build-type:
Simple
cabal-version:
>= 1.10
category:
System
copyright:
2015 Geraud Boyer <[email protected]>
description:
TODO: Write a package description.
extra-source-files:
CHANGELOG.md
CONTRIBUTING.md
README.md
license-file:
LICENSE.md
license:
MIT
maintainer:
name:
access
synopsis:
TODO: Write a package synopsis.
tested-with:
GHC == 7.8
, GHC == 7.10
version:
0.0.0
library
build-depends:
base >= 4.7
, amazonka >= 0.3.4
, amazonka-core >= 0.3.4
, amazonka-ec2 >= 0.3.4
, bytestring == 0.10.*
, cmdargs == 0.10.*
, configurator == 0.3.*
, containers == 0.5.6.*
, directory == 1.2.*
, filepath == 1.4.*
, hastache >= 0.6
, lens == 4.8.*
, lifted-async == 0.6.*
, process == 1.2.*
, text == 1.2.*
default-language:
Haskell2010
exposed-modules:
Access
Access.AWS
Access.CLI
Access.Config
Access.Display
Access.Execution
Access.Process
other-modules:
Access.Types
ghc-options:
-threaded
-Wall
hs-source-dirs:
library
ghc-options:
-O2 -funbox-strict-fields -threaded -Wall
executable access
build-depends:
base
, access
default-language:
Haskell2010
ghc-options:
-threaded
-Wall
hs-source-dirs:
executable
main-is:
Main.hs
-- test-suite tests
-- build-depends:
-- base
-- , access
-- , hspec == 2.*
-- , HUnit
-- , QuickCheck
-- default-language:
-- Haskell2010
-- ghc-options:
-- -fhpc
-- -Wall
-- -Werror
-- hs-source-dirs:
-- library
-- test-suite
-- main-is:
-- Spec.hs
-- other-modules:
-- Access
-- -- HASKELETON: New.Module
-- AccessSpec
-- -- HASKELETON: New.ModuleSpec
-- type:
-- exitcode-stdio-1.0
-- test-suite examples
-- build-depends:
-- base
-- , Glob
-- , doctest
-- default-language:
-- Haskell2010
-- hs-source-dirs:
-- test-suite
-- main-is:
-- DocTest.hs
-- type:
-- exitcode-stdio-1.0
test-suite documentation
build-depends:
base
, process
, regex-compat
default-language:
Haskell2010
hs-source-dirs:
test-suite
main-is:
Haddock.hs
type:
exitcode-stdio-1.0
test-suite style
build-depends:
base
, hlint == 1.*
default-language:
Haskell2010
hs-source-dirs:
test-suite
main-is:
HLint.hs
type:
exitcode-stdio-1.0