Update the default version of transformers to 0.4.1 on older compilers.

This commit is contained in:
Peter Simons 2014-06-03 14:49:15 +02:00
parent 5190b18caa
commit 1d392a56ae

View file

@ -15,7 +15,7 @@
# Older compilers inherit the overrides from newer ones. # Older compilers inherit the overrides from newer ones.
ghcHEADPrefs = self : super : super // { ghcHEADPrefs = self : super : super // {
mtl = self.mtl_2_2_1; mtl = self.mtl_2_1_2;
cabalInstall_1_20_0_2 = super.cabalInstall_1_20_0_2.override { Cabal = null; }; cabalInstall_1_20_0_2 = super.cabalInstall_1_20_0_2.override { Cabal = null; };
}; };
@ -41,8 +41,9 @@
gloss = null; # requires base >= 4.7 gloss = null; # requires base >= 4.7
haddock = self.haddock_2_13_2; haddock = self.haddock_2_13_2;
modularArithmetic = null; # requires base >= 4.7 modularArithmetic = null; # requires base >= 4.7
mtl = self.mtl_2_2_1;
pipesBinary = super.pipesBinary.override { binary = self.binary_0_7_2_1; }; pipesBinary = super.pipesBinary.override { binary = self.binary_0_7_2_1; };
transformers = self.transformers_0_3_0_0; # core packagen in ghc > 7.6.x transformers = self.transformers_0_4_1_0; # core packagen in ghc > 7.6.x
zipArchive = super.zipArchive_0_2_2_1; # works without binary 0.7.x zipArchive = super.zipArchive_0_2_2_1; # works without binary 0.7.x
}; };