New Haskell Platform release.

svn path=/nixpkgs/trunk/; revision=15837
This commit is contained in:
Andres Löh 2009-06-03 08:44:41 +00:00
parent e9eea90443
commit 107d41f96c
5 changed files with 12 additions and 12 deletions

View File

@ -1,16 +1,16 @@
{cabal, fetchurl, GLUT, HTTP, HUnit, OpenGL, QuickCheck, cgi, fgl, {cabal, fetchurl, GLUT, HTTP, HUnit, OpenGL, QuickCheck, cgi, fgl, editline,
haskellSrc, html, parallel, regexBase, regexCompat, regexPosix, haskellSrc, html, parallel, regexBase, regexCompat, regexPosix,
stm, time, xhtml, zlib, cabalInstall, alex, happy, haddock, ghc}: stm, time, xhtml, zlib, cabalInstall, alex, happy, haddock, ghc}:
cabal.mkDerivation (self : { cabal.mkDerivation (self : {
pname = "haskell-platform"; pname = "haskell-platform";
version = "2009.2.0"; version = "2009.2.0.1";
src = fetchurl { src = fetchurl {
url = "http://hackage.haskell.org/platform/${self.version}/cabal/${self.pname}-${self.version}.tar.gz"; url = "http://hackage.haskell.org/platform/${self.version}/cabal/${self.pname}-${self.version}.tar.gz";
sha256 = "d2b8cad09128ca6ea62ddf0f56dd7874603623aae243411a74d6d1c5be38d38b"; sha256 = "33a828ed6cd1e6cc32cfec3fd55e6ab4d8026bd7451bab65ec0873880c0f11c5";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
GLUT HTTP HUnit OpenGL QuickCheck cgi fgl GLUT HTTP HUnit OpenGL QuickCheck cgi fgl editline
haskellSrc html parallel regexBase regexCompat regexPosix haskellSrc html parallel regexBase regexCompat regexPosix
stm time xhtml zlib cabalInstall alex happy ghc stm time xhtml zlib cabalInstall alex happy ghc
]; ];

View File

@ -2,8 +2,8 @@
cabal.mkDerivation (self : { cabal.mkDerivation (self : {
pname = "network"; pname = "network";
version = "2.2.1"; # Haskell Platform 2009.0.0 version = "2.2.1.1"; # Haskell Platform 2009.2.0.1
sha256 = "111e4963a0a979570993e79511a778b267ef58df35320d1ddda61a869259b63c"; sha256 = "2b1fb2a16ed740636871662f2e38dffd9b7c13c61e28d887a1c334da3867da9d";
propagatedBuildInputs = [parsec]; propagatedBuildInputs = [parsec];
meta = { meta = {
description = "Networking-related facilities"; description = "Networking-related facilities";

View File

@ -2,9 +2,9 @@
cabal.mkDerivation (self : { cabal.mkDerivation (self : {
pname = "happy"; pname = "happy";
version = "1.18.2"; # Haskell Platform 2009.0.0 version = "1.18.4"; # Haskell Platform 2009.2.0.1
name = self.fname; name = self.fname;
sha256 = "7515922f3cfd32cd844a0abfefe0b4871f403f0d869b8644bf9cbfc0b67996ae"; sha256 = "909bec4541a92d3765e74756f752514d2d03ec7a5d3e74c18268a57fe7ffa832";
extraBuildInputs = [perl]; extraBuildInputs = [perl];
propagatedBuildInputs = [mtl]; propagatedBuildInputs = [mtl];
meta = { meta = {

View File

@ -1831,7 +1831,7 @@ let
inherit fetchurl stdenv perl ncurses gmp libedit; inherit fetchurl stdenv perl ncurses gmp libedit;
}); });
haskellPackages = haskellPackages_ghc6102; haskellPackages = haskellPackages_ghc6103;
haskellPackages_ghc642 = import ./haskell-packages.nix { haskellPackages_ghc642 = import ./haskell-packages.nix {
inherit pkgs; inherit pkgs;

View File

@ -104,7 +104,7 @@ rec {
}; };
haskellPlatform = import ../development/libraries/haskell/haskell-platform { haskellPlatform = import ../development/libraries/haskell/haskell-platform {
inherit cabal GLUT HTTP HUnit OpenGL QuickCheck cgi fgl inherit cabal GLUT HTTP HUnit OpenGL QuickCheck cgi fgl editline
haskellSrc html parallel regexBase regexCompat regexPosix haskellSrc html parallel regexBase regexCompat regexPosix
stm time xhtml zlib cabalInstall alex happy haddock; stm time xhtml zlib cabalInstall alex happy haddock;
ghc = ghcReal; ghc = ghcReal;
@ -412,14 +412,14 @@ rec {
inherit (pkgs) libedit; inherit (pkgs) libedit;
}; };
happy = happy1182; happy = happy1184;
happy117 = import ../development/tools/parsing/happy/happy-1.17.nix { happy117 = import ../development/tools/parsing/happy/happy-1.17.nix {
inherit cabal; inherit cabal;
inherit (pkgs) perl; inherit (pkgs) perl;
}; };
happy1182 = import ../development/tools/parsing/happy/happy-1.18.2.nix { happy1184 = import ../development/tools/parsing/happy/happy-1.18.4.nix {
inherit cabal mtl; inherit cabal mtl;
inherit (pkgs) perl; inherit (pkgs) perl;
}; };