-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRepoExplorer.cabal
58 lines (55 loc) · 1.64 KB
/
RepoExplorer.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
name: RepoExplorer
version: 0.5.0.0
cabal-version: >=1.10
build-type: Simple
license: MIT
license-file: LICENSE
copyright: 2010-2016 Neil Mayhew
maintainer: Neil Mayhew <[email protected]>
synopsis: A set of utilities for exploring Debian package repositories
description:
The following utilities are available:
.
* RepoList
* DependencyRoots
.
Further utilities will be added later.
category: Debian
author: Neil Mayhew
flag werror
description: Use-Werror
default: False
executable RepoList
main-is: RepoList.hs
build-depends:
base -any,
cmdargs -any,
debian -any,
parsec >=2.1.0.1 && <3.2,
bytestring >=0.9.1.7 && <0.13,
filepath >=1.1.0.4 && <1.5,
directory >=1.0.1.1 && <1.4,
unix >=2.4.0.2 && <2.9,
zlib >=0.5.2.0 && <0.7,
cryptohash -any,
download-curl -any,
curl -any
default-language: Haskell2010
other-extensions: DeriveDataTypeable
ghc-options: -Wall -Wcompat -Wredundant-constraints -Wincomplete-uni-patterns -Wincomplete-record-updates -Wno-name-shadowing -threaded
if flag(werror)
ghc-options: -Werror
executable DependencyRoots
main-is: DependencyRoots.hs
build-depends:
base -any,
cmdargs -any,
debian -any,
fgl >=5.4 && <5.9,
containers >=0.4 && <0.7,
bytestring >=0.9.1.7 && <0.13
default-language: Haskell2010
other-extensions: DeriveDataTypeable
ghc-options: -Wall -Wcompat -Wredundant-constraints -Wincomplete-uni-patterns -Wincomplete-record-updates -Wno-name-shadowing -threaded
if flag(werror)
ghc-options: -Werror