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