1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

stack: prefer the ghc-8.6.1 version

Building stack with ghc-8.4.x requires a whole lot of version overrides -- most
notably Cabal 2.4.x --, so we don't bother and just use the one built with the
latest compiler instead.
This commit is contained in:
Peter Simons 2018-10-19 11:50:15 +02:00
parent 13c666d81c
commit d393b89965
2 changed files with 5 additions and 1 deletions

View file

@ -56,4 +56,8 @@ self: super: {
};
in appendPatch super.hadoop-rpc patch;
# Version 1.9.1 needs Cabal 2.4.x or later, so
# we use the one from the ghc-8.6.1 package set.
stack = markBroken super.stack;
}

View file

@ -6837,7 +6837,7 @@ with pkgs;
cabal-install = haskell.lib.justStaticExecutables haskellPackages.cabal-install;
stack = haskell.lib.justStaticExecutables haskellPackages.stack;
stack = haskell.lib.justStaticExecutables haskell.packages.ghc861.stack;
hlint = haskell.lib.justStaticExecutables haskellPackages.hlint;
all-cabal-hashes = callPackage ../data/misc/hackage { };