From 1d392a56ae371bf30835bb044b7c3148712be6dc Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 3 Jun 2014 14:49:15 +0200 Subject: [PATCH] Update the default version of transformers to 0.4.1 on older compilers. --- pkgs/top-level/haskell-defaults.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/haskell-defaults.nix b/pkgs/top-level/haskell-defaults.nix index 697004c02fb..6341b9a36dd 100644 --- a/pkgs/top-level/haskell-defaults.nix +++ b/pkgs/top-level/haskell-defaults.nix @@ -15,7 +15,7 @@ # Older compilers inherit the overrides from newer ones. 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; }; }; @@ -41,8 +41,9 @@ gloss = null; # requires base >= 4.7 haddock = self.haddock_2_13_2; modularArithmetic = null; # requires base >= 4.7 + mtl = self.mtl_2_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 };