forked from commercialhaskell/stackage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstackage.cabal
55 lines (52 loc) · 1.83 KB
/
stackage.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
name: stackage
version: 0.1.0.0
synopsis: "Stable Hackage," tools for creating a vetted set of packages from Hackage.
-- description:
homepage: https://github.com/fpco/stackage
license: MIT
license-file: LICENSE
author: Michael Snoyman
maintainer: michael@fpcomplete.com
category: Distribution
build-type: Simple
cabal-version: >=1.8
library
exposed-modules: Stackage.NarrowDatabase
Stackage.LoadDatabase
Stackage.ModuleNameConflict
Stackage.Util
Stackage.Types
Stackage.Config
Stackage.InstallInfo
Stackage.CheckPlan
Stackage.Tarballs
Stackage.Test
Stackage.Build
Stackage.Init
Stackage.BuildPlan
Stackage.CheckCabalVersion
Stackage.Select
Stackage.GhcPkg
Stackage.ServerFiles
build-depends: base >= 4 && < 5
, containers
, Cabal >= 1.14
, tar >= 0.3
, zlib
, bytestring
, directory
, filepath
, transformers
, process
, old-locale
, time
, utf8-string
executable stackage
hs-source-dirs: app
main-is: stackage.hs
build-depends: base
, stackage
, containers
source-repository head
type: git
location: https://github.com/fpco/stackage