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

haskell-conduit: fix build with pre-7.10.x versions of GHC

Thanks to @bennofs for finding this issue!
This commit is contained in:
Peter Simons 2015-10-13 20:00:26 +02:00
parent a7bddbd4ca
commit a0376d4666
6 changed files with 18 additions and 4 deletions

View file

@ -91,4 +91,7 @@ self: super: {
# Needs hashable on pre 7.10.x compilers.
nats = addBuildDepend super.nats self.hashable;
# Needs void on pre 7.10.x compilers.
conduit = addBuildDepend super.conduit self.void;
}

View file

@ -73,4 +73,7 @@ self: super: {
# Newer versions require bytestring >=0.10.
tar = super.tar_0_4_1_0;
# Needs void on pre 7.10.x compilers.
conduit = addBuildDepend super.conduit self.void;
}

View file

@ -73,4 +73,7 @@ self: super: {
# Newer versions require bytestring >=0.10.
tar = super.tar_0_4_1_0;
# Needs void on pre 7.10.x compilers.
conduit = addBuildDepend super.conduit self.void;
}

View file

@ -82,4 +82,7 @@ self: super: {
# Newer versions require bytestring >=0.10.
tar = super.tar_0_4_1_0;
# Needs void on pre 7.10.x compilers.
conduit = addBuildDepend super.conduit self.void;
}

View file

@ -79,10 +79,6 @@ self: super: {
# Needs hashable on pre 7.10.x compilers.
nats = addBuildDepend super.nats self.hashable;
# Newer versions always trigger the non-deterministic library ID bug
# and are virtually impossible to compile on Hydra.
conduit = super.conduit_1_2_4_1;
# https://github.com/magthe/sandi/issues/7
sandi = overrideCabal super.sandi (drv: {
postPatch = "sed -i -e 's|base ==4.8.*,|base,|' sandi.cabal";
@ -96,4 +92,7 @@ self: super: {
convertible = markBroken super.convertible;
ghc-mod = markBroken super.ghc-mod;
# Needs void on pre 7.10.x compilers.
conduit = addBuildDepend super.conduit self.void;
}

View file

@ -138,4 +138,7 @@ self: super: {
xss-sanitize_0_3_5_4 = addBuildDepend super.xss-sanitize_0_3_5_4 self.network;
xss-sanitize_0_3_5_5 = addBuildDepend super.xss-sanitize_0_3_5_5 self.network;
# Needs void on pre 7.10.x compilers.
conduit = addBuildDepend super.conduit self.void;
}