nixpkgs/pkgs/development/compilers/ghc/default.nix
Eelco Dolstra 45f652ce1b * Pass readline and ncurses to the source-built ghc as well.
svn path=/nixpkgs/trunk/; revision=4013
2005-10-04 20:16:33 +00:00

12 lines
319 B
Nix

{stdenv, fetchurl, perl, ghc, m4, readline, ncurses}:
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];
propagatedBuildInputs = [readline ncurses];
}