3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
12 lines
315 B
Nix
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];
|
|
}
|