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

haskell-packages.nix: Haskell Platform version 2012.2.0.0 is out.

Renamed 'haskellPlatformArgs_future' to 'haskellPlatformArgs_2012_2_0_0'.

svn path=/nixpkgs/trunk/; revision=34325
This commit is contained in:
Peter Simons 2012-06-03 18:26:12 +00:00
parent 7ea86fc8a2
commit 1a024eabbc
2 changed files with 3 additions and 7 deletions

View file

@ -18,7 +18,7 @@
ghcHEADPrefs = ghc741Prefs;
ghc741Prefs =
self : self.haskellPlatformArgs_future self // {
self : self.haskellPlatformArgs_2012_2_0_0 self // {
haskellPlatform = self.haskellPlatform_2012_2_0_0;
mtl1 = self.mtl_1_1_1_1; # 7.2 ok, 7.3 ok
binary = null; # now a core package

View file

@ -118,10 +118,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
# NOTE: 2011.4.0.0 is the current default.
# These are currently set to versions that will likely be in
# the next platform release (May 2012). Please update with
# care.
haskellPlatformArgs_future = self : {
haskellPlatformArgs_2012_2_0_0 = self : {
inherit (self) cabal ghc;
cgi = self.cgi_3001_1_7_4; # 7.4.1 ok
fgl = self.fgl_5_4_2_4; # 7.4.1 ok
@ -152,10 +149,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
haddock = self.haddock_2_10_0; # 7.4.1 ok
};
# This is still a prerelease.
haskellPlatform_2012_2_0_0 =
callPackage ../development/libraries/haskell/haskell-platform/2012.2.0.0.nix
(self.haskellPlatformArgs_future self);
(self.haskellPlatformArgs_2012_2_0_0 self);
haskellPlatformArgs_2011_4_0_0 = self : {
inherit (self) cabal ghc;