e3f701c311
svn path=/nixpkgs/trunk/; revision=8654
25 lines
559 B
Nix
25 lines
559 B
Nix
{stdenv, fetchurl, readline, ghc, perl, m4}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ghc-6.6.1";
|
|
|
|
src = map fetchurl [
|
|
{ url = http://www.haskell.org/ghc/dist/6.6.1/ghc-6.6.1-src.tar.bz2;
|
|
md5 = "dea271503463bd28c27f25ab90998633";
|
|
}
|
|
{ url = http://www.haskell.org/ghc/dist/6.6.1/ghc-6.6.1-src-extralibs.tar.bz2;
|
|
md5 = "43a26b81608b206c056adc3032f7da2a";
|
|
}
|
|
];
|
|
|
|
builder = ./builder.sh;
|
|
|
|
buildInputs = [ghc readline perl m4];
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
meta = {
|
|
description = "The Glasgow Haskell Compiler v6.6.1";
|
|
};
|
|
}
|