-
Notifications
You must be signed in to change notification settings - Fork 2
/
all-cabal-tool.cabal
87 lines (83 loc) · 3.04 KB
/
all-cabal-tool.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
name: all-cabal-tool
version: 0.1.1.0
synopsis: Update the various all-cabal-* repos
description: Please see README.md
homepage: https://github.com/commercialhaskell/all-cabal-tool#readme
license: MIT
license-file: LICENSE
author: Michael Snoyman, Alexey Kuleshevich
maintainer: [email protected]
category: Distribution
build-type: Simple
extra-source-files: README.md ChangeLog.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Stackage.Package.Hashes
, Stackage.Package.IndexConduit
, Stackage.Package.Locations
, Stackage.Package.Git
, Stackage.Package.Git.Object
, Stackage.Package.Git.Repository
, Stackage.Package.Git.Types
, Stackage.Package.Git.WorkTree
, Stackage.Package.Metadata
, Stackage.Package.Metadata.Types
, Stackage.Package.Update
build-depends: Cabal >= 2.0
, aeson
, base
, byteable
, bytestring
, classy-prelude-conduit
, conduit
, conduit-extra
, containers
, cryptonite
, cryptonite-conduit
, directory
, enclosed-exceptions
, filepath
, hit
, hourglass
, http-client
, http-client-tls
, http-conduit
, http-types
, memory
, pretty
, process
, resourcet
, system-filepath
, tar
, text
, utf8-string
, yaml
, zlib
default-language: Haskell2010
ghc-options: -Wall -funbox-strict-fields
executable all-cabal-tool
hs-source-dirs: app
main-is: Main.hs
build-depends: base
, bytestring
, aeson
, all-cabal-tool
, amazonka
, amazonka-core
, amazonka-s3
, classy-prelude-conduit
, conduit-extra
, directory
, http-client
, http-conduit
, http-types
, lens
, optparse-applicative
, temporary
, zlib
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -O2 -funbox-strict-fields
source-repository head
type: git
location: https://github.com/commercialhaskell/all-cabal-tool