920ce3551d
- this fixes ghc on x86_64 and hopefully doesn't break 32-bit - ghc-6.6.1 and -6.6 are tested on 64-bit, 6.4.2 might fail svn path=/nixpkgs/trunk/; revision=9132
21 lines
721 B
Nix
21 lines
721 B
Nix
{stdenv, fetchurl, perl, readline, ncurses, gmp}:
|
|
|
|
assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux";
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ghc-6.4.2";
|
|
builder = ./boot.sh;
|
|
src = if stdenv.system == "i686-linux" then
|
|
(fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/ghc-6.4.2-i386-unknown-linux.tar.bz2;
|
|
md5 = "092fe2e25dab22b926babe97cc77db1f";
|
|
}) else
|
|
(fetchurl {
|
|
url = http://haskell.org/ghc/dist/6.4.2/ghc-6.4.2-x86_64-unknown-linux.tar.bz2;
|
|
md5 = "8f5fe48798f715cd05214a10987bf6d5";
|
|
});
|
|
buildInputs = [perl];
|
|
propagatedBuildInputs = [readline ncurses gmp];
|
|
inherit readline ncurses gmp;
|
|
}
|