nixpkgs/pkgs/development/compilers/ghc/default.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

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";
};
}