-
Notifications
You must be signed in to change notification settings - Fork 0
/
nix-tools.cabal
202 lines (190 loc) · 6.42 KB
/
nix-tools.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
name: nix-tools
version: 0.1.0.0
synopsis: cabal/stack to nix translation tools
description: A set of tools to aid in trating stack and cabal projects into nix expressions.
license: BSD3
license-file: LICENSE
author: Robert Mourey Jr
maintainer: rmourey_jr@blockchain-company.io
-- copyright:
category: Distribution
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
ghc-options: -Wall
exposed-modules: Cabal2Nix
, Cabal2Nix.Util
, Cabal2Nix.Plan
, CabalName
, CabalName.CLI
, Distribution.Nixpkgs.Fetch
, StackRepos
, StackRepos.CLI
, Stack2nix
, Stack2nix.Cache
, Stack2nix.CLI
, Stack2nix.External.Resolve
, Stack2nix.Project
, Stack2nix.Stack
build-depends: base >=4 && <4.15
, Cabal >= 3.4.0 && <3.7
, aeson >= 2.0.0.0
, aeson-pretty
, base16-bytestring
, bytestring
, cryptohash-sha256
, containers
, data-fix
, deepseq
, directory
, extra
, filepath
-- Needs https://github.com/the-blockchain-company/tbco-nix/commit/6a8c29117eff36ce975e02e01efc8b25d93fcb90#diff-6fb0c6517b547a8baf082d5d2d604842
-- to work with the data-dir issues when building components.
-- This commit is included since 0.6.5.
, hnix >= 0.6.5
, hpack
, http-client
, http-client-tls
, http-types
, network-uri
, optparse-applicative
, prettyprinter
, process
, text
, transformers
, unordered-containers
, yaml
hs-source-dirs: lib
default-language: Haskell2010
executable cabal-to-nix
ghc-options: -Wall
main-is: Main.hs
build-depends: base >=4 && <4.15
, transformers
, bytestring
, hpack
, hnix
, text
, nix-tools
, filepath
, directory
, prettyprinter
hs-source-dirs: cabal2nix
default-language: Haskell2010
executable hashes-to-nix
ghc-options: -Wall
main-is: Main.hs
build-depends: base >=4 && <4.15
, hnix
, nix-tools
, data-fix
, aeson
, microlens
, microlens-aeson
, text
, filepath
, directory
hs-source-dirs: hashes2nix
default-language: Haskell2010
executable plan-to-nix
ghc-options: -Wall
main-is: Main.hs
other-modules: Plan2Nix
, Plan2Nix.Cache
, Plan2Nix.CLI
, Plan2Nix.Project
, Plan2Nix.Plan
build-depends: base >=4 && <4.15
, nix-tools
, hnix
, Cabal >= 2.4
, text
, hpack
, unordered-containers
, vector
, aeson
, microlens
, microlens-aeson
, optparse-applicative
, prettyprinter
, filepath
, directory
, bytestring
, transformers
, extra
hs-source-dirs: plan2nix
default-language: Haskell2010
executable hackage-to-nix
ghc-options: -Wall
main-is: Main.hs
build-depends: base >=4 && <4.15
, nix-tools
, hackage-db
, hnix
, Cabal
, aeson
, aeson-pretty
, containers
, bytestring
, text
, cryptohash-sha256
, base16-bytestring
, base64-bytestring
, filepath
, directory
, transformers
hs-source-dirs: hackage2nix
default-language: Haskell2010
executable lts-to-nix
ghc-options: -Wall
main-is: Main.hs
build-depends: base >=4 && <4.15
, nix-tools
, hnix
, yaml
, aeson
, microlens
, microlens-aeson
, text
, filepath
, directory
, unordered-containers
, vector
, Cabal
hs-source-dirs: lts2nix
default-language: Haskell2010
executable stack-to-nix
ghc-options: -Wall
main-is: Main.hs
build-depends: base >=4 && <4.15
, nix-tools
hs-source-dirs: stack2nix
default-language: Haskell2010
executable truncate-index
ghc-options: -Wall
main-is: Main.hs
-- other-modules:
build-depends: base
, optparse-applicative
, zlib
, tar
, bytestring
, time
hs-source-dirs: truncate-index
default-language: Haskell2010
executable stack-repos
ghc-options: -Wall
main-is: Main.hs
build-depends: base >=4 && <4.15
, nix-tools
hs-source-dirs: stack-repos
default-language: Haskell2010
executable cabal-name
ghc-options: -Wall
main-is: Main.hs
build-depends: base >=4 && <4.15
, nix-tools
hs-source-dirs: cabal-name
default-language: Haskell2010