"Stable Hackage": creating a vetted set of packages from Hackage. This repository is for package authors and maintainers to get their packages into Stackage. If you simply want to use Stackage as an end user, please follow the instructions on https://www.stackage.org/.
We strongly recommend using the Haskell tool stack for doing builds, which includes built-in Stackage support: stack .
We welcome all packages, provided:
- The package author/maintainer agrees to the maintainers agreement.
- The package is buildable and testable from Hackage. We recommend the Stack Travis script, which ensures a package is not accidentally incomplete.
- The package is compatible with the newest versions of all dependencies.
- The package is compatible with the versions of libraries that ship with GHC (more information on lenient lower bounds).
Full details on how to add a package can be found in the maintainers agreement.
The Stackage project consists of multiple repositories. This repository contains the metadata on packages to be included in future builds and some project information. In addition, we have the following repositories:
We also support some add-on tools to cabal-install to make its usage with Stackage both easier and more secure:
Generally, building the package set should be done only by the Jenkins machine or by the official maintainers, as the process does require quite a bit of setup on the local machine. That said, you'll likely be able to get a stable build by running:
cabal update
cabal install stackage
stackage nightly
Note: This method has been disabled for now, but may be enabled again in the future.
If you'd like to check a build plan, or perform an entire build, without
specially configuring your system, Docker may be a good approach. To check if
some modifications to build-constraints.yaml
are valid, try the following:
-
Create a local clone of the
stackage
repo -
Make modifications to your local
build-constraints.yaml
-
Inside the
stackage
working directory, run the following:$ docker run -it --rm -v $(pwd):/stackage -w /stackage snoyberg/stackage /bin/bash -c 'cabal update && stackage check'
Similarly, if you'd like to perform an entire build, you can replace the last step with:
$ docker run -it --rm -v $(pwd):/stackage -w /stackage snoyberg/stackage /bin/bash -c 'cabal update && stackage nightly --skip-upload'
The following describes at a high level the series of steps for processing
- Get list of core packages
- Get build constraints from list of maintained packages
- Load up package index
- Calculate build plan using newest versions of packages
- Write out a YAML file with complete build plan
- Verify that the build plan can be compiled
- Perform the build
- Load up most recent build plan
- Convert build plan into constraints for next build
- Continue from step (3) above