## The Haskell Tool Stack [![Build Status](https://travis-ci.org/commercialhaskell/stack.svg?branch=master)](https://travis-ci.org/commercialhaskell/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: * [Windows](https://github.com/commercialhaskell/stack/wiki/Downloads#windows) * [OS X](https://github.com/commercialhaskell/stack/wiki/Downloads#os-x) * [Ubuntu](https://github.com/commercialhaskell/stack/wiki/Downloads#ubuntu) * [Arch Linux](https://github.com/commercialhaskell/stack/wiki/Downloads#arch-linux) * [Linux (general)](https://github.com/commercialhaskell/stack/wiki/Downloads#linux) #### 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](https://github.com/commercialhaskell/stack/wiki/Architecture). #### Questions, Feedback, Discussion * For frequently asked questions about detailed or specific use-cases, please see [the FAQ](https://github.com/commercialhaskell/stack/wiki/FAQ). * For general questions, comments, feedback and support please write to [the Commercial Haskell mailing list](https://groups.google.com/d/forum/commercialhaskell). * For bugs, issues, or requests please [open an issue](https://github.com/commercialhaskell/stack/issues/new). #### Why stack? stack is a project of the [Commercial Haskell](http://commercialhaskell.com/) group, spearheaded by [FP Complete](https://www.fpcomplete.com/). 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](https://github.com/fpco/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](https://www.fpcomplete.com/blog/2015/05/thousand-user-haskell-survey), which rated build issues as a major concern. The stack team hopes that stack can address these concerns.