nixpkgs/pkgs/development/compilers/ghc/default.nix
Eelco Dolstra efdb847441 * Use the new patchelf to build GHC in a fully pure way. Should be
checked on NixOS.

svn path=/nixpkgs/trunk/; revision=3993
2005-10-02 18:48:08 +00:00

11 lines
254 B
Nix

{stdenv, fetchurl, perl, ghc, m4}:
stdenv.mkDerivation {
name = "ghc-6.4.1";
src = fetchurl {
url = http://www.haskell.org/ghc/dist/6.4.1/ghc-6.4.1-src.tar.bz2;
md5 = "fd289bc7c3afa272ff831a71a50b5b00";
};
buildInputs = [perl ghc m4];
}