haskell-packages.nix: updated configurations for older GHC versions to prefer a more modern DeepSeq

svn path=/nixpkgs/trunk/; revision=32023
This commit is contained in:
Peter Simons 2012-02-03 21:06:28 +00:00
parent 4a5673f520
commit 2286dd1f51

View file

@ -370,6 +370,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
haskellPlatform = self.haskellPlatform_2010_1_0_0;
extensibleExceptions = self.extensibleExceptions_0_1_1_0;
repaExamples = null; # don't pick this version of 'repa-examples' during nix-env -u
deepseq = self.deepseq_1_1_0_2;
# deviating from Haskell platform here, to make some packages (notably statistics) compile
};
haskellPlatform_2010_1_0_0 =
@ -409,13 +411,14 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
extensibleExceptions = self.extensibleExceptions_0_1_1_0;
text = self.text_0_11_0_6;
repaExamples = null; # don't pick this version of 'repa-examples' during nix-env -u
deepseq = self.deepseq_1_1_0_2;
# deviating from Haskell platform here, to make some packages (notably statistics) compile
};
haskellPlatform_2009_2_0_2 =
callPackage ../development/libraries/haskell/haskell-platform/2009.2.0.2.nix
(self.haskellPlatformArgs_2009_2_0_2 self);
# Haskell libraries.
Agda = callPackage ../development/libraries/haskell/Agda {};