3
0
Fork 0
forked from mirrors/nixpkgs

cabal2nix: fix build with ghc 8.4.x

This commit is contained in:
Peter Simons 2018-10-24 21:49:32 +02:00
parent f1fd7da406
commit 26974e962e

View file

@ -63,12 +63,11 @@ self: super: {
# more verbose but friendlier for Hydra.
stack = (doJailbreak super.stack).override {
Cabal = self.Cabal_2_4_0_1;
hpack = self.hpack_0_31_0;
hpack = self.hpack_0_31_0.override { Cabal = self.Cabal_2_4_0_1; };
yaml = self.yaml_0_11_0_0;
hackage-security = self.hackage-security.override { Cabal = self.Cabal_2_4_0_1; };
};
hpack_0_31_0 = super.hpack_0_31_0.override {
Cabal = self.Cabal_2_4_0_1;
yaml = self.yaml_0_11_0_0;
};