nixpkgs/pkgs/development/compilers/ghc/default.nix
Eelco Dolstra 3389f4bc36 * Copy lots of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00

12 lines
315 B
Nix

{stdenv, fetchurl, perl, ghc, m4, readline, ncurses}:
stdenv.mkDerivation {
name = "ghc-6.4.1";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/ghc-6.4.1-src.tar.bz2;
md5 = "fd289bc7c3afa272ff831a71a50b5b00";
};
buildInputs = [perl ghc m4];
propagatedBuildInputs = [readline ncurses];
}