diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-10-23 14:20:13 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-10-23 14:20:13 -0400 |
commit | 94756201349685a34c4495addd3484fdfcc8b498 (patch) | |
tree | fd4a9cee20d3c2b79f56ded7e02fb0c01b26b6c9 /hadrian/stack.yaml | |
parent | 575b35f4cdc18045bccd42d341d6f25d95c0696c (diff) | |
parent | 45f3bff7016a2a0cd9a5455a882ced984655e90b (diff) | |
download | haskell-94756201349685a34c4495addd3484fdfcc8b498.tar.gz |
Add 'hadrian/' from commit '45f3bff7016a2a0cd9a5455a882ced984655e90b'
git-subtree-dir: hadrian
git-subtree-mainline: 575b35f4cdc18045bccd42d341d6f25d95c0696c
git-subtree-split: 45f3bff7016a2a0cd9a5455a882ced984655e90b
Diffstat (limited to 'hadrian/stack.yaml')
-rw-r--r-- | hadrian/stack.yaml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/hadrian/stack.yaml b/hadrian/stack.yaml new file mode 100644 index 0000000000..d379133384 --- /dev/null +++ b/hadrian/stack.yaml @@ -0,0 +1,30 @@ +# For more information, see: http://docs.haskellstack.org/en/stable/yaml_configuration.html + +# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2) +resolver: lts-12.10 + +# Local packages, usually specified by relative directory name +packages: +- '.' +- '../libraries/Cabal/Cabal' +- '../libraries/text' + +# This is necessary to build until happy's version bounds are updated to work +# with the new Cabal version. Stack's error message explains the issue: +# +# In the dependencies for happy-1.19.9: +# Cabal-2.3.0.0 from stack configuration does not match <2.2 (latest matching version is 2.0.1.1) +# needed due to hadrian-0.1.0.0 -> happy-1.19.9 +# +# TODO: Remove this once it's no longer necessary +allow-newer: true + +nix: + enable: false + packages: + - autoconf + - automake + - gcc + - git + - ncurses + - perl |