stackage/stackage.cabal
Michael Snoyman 11f9b73cf3 Remove all old code
Now constraints are always taken from a config file, meaning that
executables do not need to be recompiled for every settings change.
2014-12-15 07:49:25 +02:00

107 lines
3.5 KiB
Plaintext

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.10
library
default-language: Haskell2010
exposed-modules: Stackage2.Prelude
Stackage2.BuildConstraints
Stackage2.CorePackages
Stackage2.PackageIndex
Stackage2.BuildPlan
Stackage2.CheckBuildPlan
Stackage2.UpdateBuildPlan
Stackage2.GithubPings
Stackage2.PackageDescription
Stackage2.ServerBundle
Stackage2.Upload
Stackage2.PerformBuild
Stackage2.CompleteBuild
build-depends: base >= 4 && < 5
, containers
, Cabal >= 1.14
, tar >= 0.3
, zlib
, bytestring
, directory
, filepath
, transformers
, process
, old-locale
, time < 1.5
, utf8-string
, conduit-extra
, classy-prelude-conduit
, text
, system-fileio
, system-filepath
, mtl
, aeson
, yaml
, unix-compat
, http-client
, temporary
, data-default-class
, stm
, mono-traversable
, async
, streaming-commons >= 0.1.7.1
, semigroups
, xml-conduit
executable stackage-nightly
default-language: Haskell2010
hs-source-dirs: app
main-is: stackage-nightly.hs
build-depends: base
, stackage
ghc-options: -rtsopts -threaded -with-rtsopts=-N
executable lts-minor-bump
default-language: Haskell2010
hs-source-dirs: app
main-is: lts-minor-bump.hs
build-depends: base
, stackage
ghc-options: -rtsopts -threaded -with-rtsopts=-N
executable lts-major-bump
default-language: Haskell2010
hs-source-dirs: app
main-is: lts-major-bump.hs
build-depends: base
, stackage
ghc-options: -rtsopts -threaded -with-rtsopts=-N
test-suite spec
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Spec.hs
other-modules: Stackage2.CorePackagesSpec
Stackage2.PackageIndexSpec
Stackage2.BuildPlanSpec
build-depends: base
, stackage
, hspec
, QuickCheck
, text
, classy-prelude-conduit
, Cabal
, yaml
, containers
source-repository head
type: git
location: https://github.com/fpco/stackage