No description
Find a file
2015-06-09 10:26:12 +02:00
etc Changed url 'fpco' -> 'commercialhaskell' 2015-06-08 12:06:13 -07:00
src GHC 7.10 fixes 2015-06-09 06:23:26 +03:00
test/package-dump Initial package dump parsing #166 2015-06-02 15:37:58 +03:00
.dir-locals.el Update .dir-locals.el/.ghci for stack exec ghci 2015-05-27 19:57:42 +02:00
.dockerignore Add code to create signed debian packages & host them on s3 2015-06-01 15:10:28 -10:00
.ghci Fixup .ghci 2015-06-08 16:02:46 +02:00
.gitignore .gitignore: add .docker-sandbox/ 2015-06-06 10:11:53 -07:00
ChangeLog.md Update ChangeLog 2015-06-09 05:44:47 +03:00
LICENSE Fix cabal check warnings 2015-06-09 05:51:26 +03:00
Makefile Add the ability to sign & upload the deb pkgs 2015-06-05 07:53:13 -10:00
README.md Update wiki links 2015-06-09 10:26:12 +02:00
Setup.hs First commit 2015-04-29 21:47:45 +02:00
stack.cabal Fix cabal check warnings 2015-06-09 05:51:26 +03:00
stack.yaml 'docker pull' subcommand 2015-05-31 08:24:34 -07:00

The Haskell Tool Stack

stack is a cross-platform program for developing Haskell projects. It is aimed at Haskellers both new and experienced.

It features:

  • Installing GHC automatically.
  • Installing packages needed for your project.
  • Building your project.
  • Testing your project.
  • Benchmarking your project.

How to install

Downloads are available by operating system:

How to use

Go into a Haskell project directory and run stack build. This will do the following:

  • Automatically create a stack configuration file in the current directory.
  • Figure out what Stackage release (LTS or nightly) is appropriate for the dependencies.
  • Download and install GHC.
  • Download the package index.
  • Download and install all necessary dependencies for the project.
  • Build and install the project.

Run stack for a complete list of commands.

Architecture

A full description of the architecture is available here.

Frequently Asked Questions

For frequently asked questions about detailed or specific use-cases, please see the FAQ or open an issue with label question.

Why stack?

stack is a project of the Commercial Haskell group, spearheaded by FP Complete. It is designed to answer the needs of commercial Haskell users, hobbyist Haskellers, and individuals and companies thinking about starting to use Haskell. It is intended to be easy to use for newcomers, while providing the customizability and power experienced developers need.

While stack itself has been around since June of 2015, it is based on codebases used by FP Complete for its corporate customers and internally for years prior. stack is a refresh of that codebase combined with other open source efforts like stackage-cli to meet the needs of users everywhere.

A large impetus for the work on stack was a large survey of people interested in Haskell, which rated build issues as a major concern. The stack team hopes that stack can address these concerns.