Stack, Cabal etc
Last updated
Last updated
is a (not the only) Haskell standard for scaffolding, building, packaging and managing dependencies for a project. It uses under the covers. The interplay between Stack, Cabal and makes this area a bit of a minefield.
In parent directory, where simple
is the template from stack templates
list:
GHCi session in the context of the current project:
For a global package install, (like npm install -g package
) use cabal NOT stack:
For a local package install restricted to only a stack project (like npm install --save package
):
This will in turn generate an edit to the project's Cabal file project.cabal
:
Global ghc could have been installed in all sorts of ways, it is found by running:
But really you probably want to be using a Stack managed global setup e.g. outside of a project folder, run one of the following commands:
This should tell you in the logs that you are using e.g. .stack/global-project/stack.yaml
. The resolver
field in this file will determine which ghc version you are using.
The project ghc is set via the local stack.yaml
, again using the resolver to determine the version. ghc itself will be installed somewhere centrally by Stack.
The following command when run globally tells you all of the packages which are installed:
The logic for resolving dependencies without and with Stack is as follows:
Packages GHC can use > Are registered with "ghc-pkg register" > And (almost always) built with Cabal > With build dependencies resolved by cabal-install > From Hackage.
Packages GHC can use > Are registered with "ghc-pkg register" > And (almost always) built with Cabal > With build dependencies resolved by stack > From Stackage (if possible...) or Hackage
Stackage specifies a 'resolver'
a GHC version, a number of packages available for installation, and various settings like build flags"
/etc/stack/config.yaml
- for system global non-project default options
~/.stack/config.yaml
- for user non-project default options
When stack is invoked outside a stack project it will source project specific options from ~/.stack/global-project/stack.yaml
. When stack is invoked inside a stack project, only options from <project dir>/stack.yaml
are used, and ~/.stack/global-project/stack.yaml
is ignored.
: