-
Notifications
You must be signed in to change notification settings - Fork 9
/
cab.cabal
81 lines (74 loc) · 1.98 KB
/
cab.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
cabal-version: >=1.10
name: cab
version: 0.2.21
license: BSD3
license-file: LICENSE
maintainer: Kazu Yamamoto <[email protected]>
author: Kazu Yamamoto <[email protected]>
homepage: http://www.mew.org/~kazu/proj/cab/
synopsis: A maintenance command of Haskell cabal packages
description:
This is a MacPorts-like maintenance command of
Haskell cabal packages. Some part of this program is a wrapper to
"ghc-pkg" and "cabal".
If you are always confused due to inconsistency of two commands,
or if you want a way to check all outdated packages,
or if you want a way to remove outdated packages recursively,
this command helps you.
category: Distribution
build-type: Simple
source-repository head
type: git
location: git://github.com/kazu-yamamoto/cab.git
library
exposed-modules:
Distribution.Cab
Distribution.Cab.PkgDB
Distribution.Cab.Printer
Distribution.Cab.Sandbox
Distribution.Cab.VerDB
Distribution.Cab.Version
other-modules:
Distribution.Cab.Commands
Distribution.Cab.GenPaths
Distribution.Cab.Utils
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.0 && <5,
Cabal >=1.18,
attoparsec >=0.10,
bytestring,
conduit >=1.1,
conduit-extra >=1.1.2,
containers,
directory,
filepath,
process,
resourcet
executable cab
main-is: Main.hs
hs-source-dirs: src
other-modules:
Commands
Doc
Help
Options
Program
Run
Types
Paths_cab
default-language: Haskell2010
ghc-options: -Wall -threaded
build-depends:
base >=4.0 && <5,
cab,
Cabal >=1.18,
attoparsec >=0.10,
bytestring,
conduit >=1.1,
conduit-extra >=1.1.2,
containers,
directory,
filepath,
process