2009-07-20 06:02:56 -07:00
|
|
|
{stdenv, fetchurl, libedit, ghc, perl, gmp, ncurses}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "6.10.4";
|
2011-08-08 12:47:31 -07:00
|
|
|
|
2009-07-20 06:02:56 -07:00
|
|
|
name = "ghc-${version}";
|
2011-08-08 12:47:31 -07:00
|
|
|
|
2009-07-20 06:02:56 -07:00
|
|
|
src = fetchurl {
|
2015-03-14 05:32:26 -07:00
|
|
|
url = "${meta.homepage}/dist/${version}/${name}-src.tar.bz2";
|
2009-07-20 06:02:56 -07:00
|
|
|
sha256 = "d66a8e52572f4ff819fe5c4e34c6dd1e84a7763e25c3fadcc222453c0bd8534d";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ghc libedit perl gmp];
|
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-25 02:22:10 -08:00
|
|
|
|
2015-03-14 05:32:26 -07:00
|
|
|
configureFlags = [
|
2015-10-15 08:43:23 -07:00
|
|
|
"--with-gmp-libraries=${gmp.out}/lib"
|
|
|
|
"--with-gmp-includes=${gmp.dev}/include"
|
2014-12-17 10:11:30 -08:00
|
|
|
"--with-gcc=${stdenv.cc}/bin/gcc"
|
2009-07-20 06:02:56 -07:00
|
|
|
];
|
|
|
|
|
2014-05-30 14:10:19 -07:00
|
|
|
NIX_CFLAGS_COMPILE = "-fomit-frame-pointer";
|
|
|
|
|
2009-07-20 06:02:56 -07:00
|
|
|
meta = {
|
2015-03-14 05:32:26 -07:00
|
|
|
homepage = "http://haskell.org/ghc";
|
2009-07-20 06:02:56 -07:00
|
|
|
description = "The Glasgow Haskell Compiler";
|
2015-03-25 07:45:20 -07:00
|
|
|
platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported.
|
|
|
|
inherit (ghc.meta) license;
|
2009-07-20 06:02:56 -07:00
|
|
|
};
|
|
|
|
}
|