Stack is a cross-platform program for developing Haskell projects. It is aimed at Haskellers both new and experienced. It aims to support fully users on Linux, macOS and Windows.
Stack features:
- Installing the Glasgow Haskell Compiler (GHC) automatically, in an isolated location.
- Installing packages needed for your project.
- Building your project.
- Testing your project.
- Benchmarking your project.
Stack can be installed on most Unix-like operating systems, including macOS, and on Windows.
For most Unix-like operating systems, the easiest way to install Stack is to run:
curl -sSL https://get.haskellstack.org/ | sh
or:
wget -qO- https://get.haskellstack.org/ | sh
On 64-bit Windows, you can download and install the Windows installer. Note that systems with antivirus software may need to add Stack to the list of 'trusted' applications.
For other operating systems and direct downloads, check out the install and upgrade guide.
The get.haskellstack.org script referred to
above will ask for root access using sudo
. It needs such access in order to
use your platform's package manager to install dependencies and to install to
/usr/local/bin
. If you prefer more control, follow the manual installation
instructions in the install and upgrade guide.
If you already have Stack installed, you can upgrade it to the latest version by the command:
stack upgrade
For an immediate experience of using Stack to build an executable with Haskell, first you need to follow the guide to install Stack.
To start a new project named my-project
, issue these four commands in a
terminal:
stack new my-project
cd my-project
stack build
stack exec my-project-exe
- The
stack new my-project
command will create a new directory, namedmy-project
, that contains all the files needed to start a project correctly, using a default template. - The
cd my-project
command will change to that directory. - The
stack build
command will build the template project and create an executable namedmy-project-exe
. First, if necessary, Stack will download the necessary GHC compiler in an isolated location. That won't interfere with any system-level installations of GHC. - The
stack exec my-project-exe
command will run (execute) the built executable, in Stack's environment.
For a complete list of Stack's commands and options, simply command:
stack
For help on a particular Stack command, for example stack build
, command:
stack build --help
If you want to launch a run-eval-print loop (REPL), then command:
stack ghci
If you want to use Stack to install an executable provided by a Haskell package, then all you have to do is command:
stack install <package-name>
The stack new my-project
command above should have created the following files
and directories:
.
├── app
│ └── Main.hs
├── src
│ └── Lib.hs
├── test
│ └── Spec.hs
├── Setup.hs
├── package.yaml
├── my-project.cabal
├── stack.yaml
├── README.md
├── ChangeLog.md
├── LICENSE
└── .gitignore
(The stack build
command will have created other directories and files.)
The Haskell code for the executable/application is in Main.hs
. The
source code for the library that it uses is in Lib.hs
. The contents of
my-project.cabal
describes the project. That file is generated by the contents
of package.yaml
.
To manage your library:
-
Edit source files in the
src
directory. Theapp
directory should preferably contain only files related to executables. -
Your developing project may need to depend on a library provided by another Haskell package.
- Add the name of that new package to the file
package.yaml
, in itsdependencies:
section. - Run
stack build
again. Stack will usepackage.yaml
to create an updatedmy-project.cabal
for you.
- Add the name of that new package to the file
-
If desired, you can delete the
package.yaml
file and update themy-project.cabal
file directly. Stack will then use that file. -
If you get an error message that tells you that the Stack configuration has no specified version of your added package, follow Stack's likely recommandation to add a specific version of that package in the
stack.yaml
file, in itsextra-deps:
section.
That was a really fast introduction on how to start to code in Haskell using Stack. If you want to go further, we highly recommend you read the Stack User Guide.
A complete user guide to Stack is available, covering all of the most common ways to use Stack. Terms used in Stack's documentation are also explained in the glossary.
Stack is a build tool for Haskell designed to answer the needs of Haskell users new and experienced alike. It has a strong focus on reproducible build plans, multi-package projects, and a consistent, easy-to-learn interface, while providing the customizability and power experienced developers need.
As a build tool, Stack does not stand alone. It is built on the great work provided by:
- The Glasgow Haskell Compiler (GHC), the premier Haskell compiler. Stack will manage your GHC installations and automatically select the appropriate compiler version for your project.
- The Cabal build system, a specification for defining Haskell packages, together with a library for performing builds.
- The Hackage Haskell Package Repository, a repository providing thousands of open source libraries and applications to help you get your work done.
- The Stackage package collection, a curated set of packages from Hackage which are regularly tested for compatibility. Stack defaults to using Stackage package sets to avoid dependency problems.
Stack is provided by a team of volunteers and companies under the auspices of the Commercial Haskell group. The project was spearheaded by FP Complete to answer the needs of commercial Haskell users, and has since become a thriving open source project meeting the needs of Haskell users of all stripes.
If you'd like to get involved with Stack, check out the newcomer friendly label on the GitHub issue tracker.
- For answers to frequently asked questions about Stack, please see the FAQ.
- For general questions, comments, feedback and support, please post to the Haskell Community.
- For bugs, issues, or requests, please open an issue.
- When using Stack Overflow, please use the haskell-stack tag.
The following assumes that you already have installed a version of Stack and the Git application.
- Clone the
stack
repository from GitHub with the command:git clone https://github.com/commercialhaskell/stack.git
. - Enter into the cloned
stack
directory with commandcd stack
. - Build the
stack
executable using a pre-existing installation of Stack with commandstack build
. - Once the
stack
executable has been built, check its version with the commandstack exec -- stack --version
. Make sure the version is the latest. - In the GitHub respository's issue tracker, look for issues tagged with newcomer friendly and awaiting pull request labels.
If you need to check your changes quickly run stack ghci
and then this command
at the REPL's prompt:
:main --stack-root=<path_to_root> --stack-yaml=<path_to_stack.yaml> <COMMAND>
This allows you to set a special Stack root (instead of the default Stack root)
and to target your commands at a particular stack.yaml
file instead of the one
found in the current directory.
To uninstall Stack, it should be sufficient to delete:
- the Stack root folder (see
stack path --stack-root
, before you uninstall); - on Windows, the folder containing Stack's tools (see
stack path --programs
, before you uninstall), which is located outside of the Stack root folder; and - the
stack
executable file (seewhich stack
, on Unix-like operating systems, orwhere.exe stack
, on Windows).
You may also want to delete .stack-work
folders in any Haskell projects that
you have built using Stack. The stack uninstall
command provides information
about how to uninstall Stack.