nixpkgs/pkgs/development/compilers/ghc/default.nix

12 lines
319 B
Nix
Raw Normal View History

{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];
}