mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
New Haskell Platform release.
svn path=/nixpkgs/trunk/; revision=15837
This commit is contained in:
parent
e9eea90443
commit
107d41f96c
|
@ -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,
|
||||
stm, time, xhtml, zlib, cabalInstall, alex, happy, haddock, ghc}:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "haskell-platform";
|
||||
version = "2009.2.0";
|
||||
version = "2009.2.0.1";
|
||||
src = fetchurl {
|
||||
url = "http://hackage.haskell.org/platform/${self.version}/cabal/${self.pname}-${self.version}.tar.gz";
|
||||
sha256 = "d2b8cad09128ca6ea62ddf0f56dd7874603623aae243411a74d6d1c5be38d38b";
|
||||
sha256 = "33a828ed6cd1e6cc32cfec3fd55e6ab4d8026bd7451bab65ec0873880c0f11c5";
|
||||
};
|
||||
propagatedBuildInputs = [
|
||||
GLUT HTTP HUnit OpenGL QuickCheck cgi fgl
|
||||
GLUT HTTP HUnit OpenGL QuickCheck cgi fgl editline
|
||||
haskellSrc html parallel regexBase regexCompat regexPosix
|
||||
stm time xhtml zlib cabalInstall alex happy ghc
|
||||
];
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "network";
|
||||
version = "2.2.1"; # Haskell Platform 2009.0.0
|
||||
sha256 = "111e4963a0a979570993e79511a778b267ef58df35320d1ddda61a869259b63c";
|
||||
version = "2.2.1.1"; # Haskell Platform 2009.2.0.1
|
||||
sha256 = "2b1fb2a16ed740636871662f2e38dffd9b7c13c61e28d887a1c334da3867da9d";
|
||||
propagatedBuildInputs = [parsec];
|
||||
meta = {
|
||||
description = "Networking-related facilities";
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "happy";
|
||||
version = "1.18.2"; # Haskell Platform 2009.0.0
|
||||
version = "1.18.4"; # Haskell Platform 2009.2.0.1
|
||||
name = self.fname;
|
||||
sha256 = "7515922f3cfd32cd844a0abfefe0b4871f403f0d869b8644bf9cbfc0b67996ae";
|
||||
sha256 = "909bec4541a92d3765e74756f752514d2d03ec7a5d3e74c18268a57fe7ffa832";
|
||||
extraBuildInputs = [perl];
|
||||
propagatedBuildInputs = [mtl];
|
||||
meta = {
|
|
@ -1831,7 +1831,7 @@ let
|
|||
inherit fetchurl stdenv perl ncurses gmp libedit;
|
||||
});
|
||||
|
||||
haskellPackages = haskellPackages_ghc6102;
|
||||
haskellPackages = haskellPackages_ghc6103;
|
||||
|
||||
haskellPackages_ghc642 = import ./haskell-packages.nix {
|
||||
inherit pkgs;
|
||||
|
|
|
@ -104,7 +104,7 @@ rec {
|
|||
};
|
||||
|
||||
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
|
||||
stm time xhtml zlib cabalInstall alex happy haddock;
|
||||
ghc = ghcReal;
|
||||
|
@ -412,14 +412,14 @@ rec {
|
|||
inherit (pkgs) libedit;
|
||||
};
|
||||
|
||||
happy = happy1182;
|
||||
happy = happy1184;
|
||||
|
||||
happy117 = import ../development/tools/parsing/happy/happy-1.17.nix {
|
||||
inherit cabal;
|
||||
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 (pkgs) perl;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue