-
Notifications
You must be signed in to change notification settings - Fork 4
/
stackage-cli.cabal
68 lines (62 loc) · 1.46 KB
/
stackage-cli.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
name: stackage-cli
version: 0.1.0.2
synopsis:
A CLI library for stackage commands
description:
A CLI library for stackage commands
homepage:
https://www.stackage.org/package/stackage-cli
bug-reports:
https://github.com/fpco/stackage-cli/issues
license: MIT
license-file: LICENSE
author: Dan Burton
maintainer: [email protected]
copyright: 2015 FP Complete Corporation
build-type: Custom
cabal-version: >=1.10
category: Development
extra-source-files: README.md ChangeLog.md
source-repository head
type: git
location: git://github.com/fpco/stackage-cli.git
library
hs-source-dirs: src/
exposed-modules:
Stackage.CLI
other-modules:
SimpleOptions
, Plugins
, Plugins.Commands
build-depends:
base >=4.7 && <5
, text
, conduit
, optparse-applicative
, process
, transformers
, split
, filepath
, directory
, hashable
, unordered-containers
, exceptions
, optparse-simple >= 0.0.2
, either
default-language: Haskell2010
executable stackage
hs-source-dirs: main
main-is: Main.hs
build-depends:
base >=4.7 && <5
, text
, stackage-cli
default-language: Haskell2010
executable stk
hs-source-dirs: main
main-is: Main.hs
build-depends:
base >=4.7 && <5
, text
, stackage-cli
default-language: Haskell2010