1442e8ec22
svn path=/nixpkgs/trunk/; revision=6711
18 lines
428 B
Nix
18 lines
428 B
Nix
{stdenv, gcc, fetchurl, perl, ghc, m4, readline, ncurses}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ghc-6.4.2";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/ghc-6.4.2-src.tar.bz2;
|
|
md5 = "a394bf14e94c3bca5507d568fcc03375";
|
|
};
|
|
buildInputs = [perl ghc m4];
|
|
propagatedBuildInputs = [readline ncurses];
|
|
builder = ./builder.sh;
|
|
inherit gcc;
|
|
|
|
meta = {
|
|
description = "The Glasgow Haskell Compiler";
|
|
};
|
|
}
|