2013-12-02 20:33:21 +00:00
|
|
|
{ stdenv, fetchurl, ghc, perl, gmp, ncurses, happy, alex }:
|
2010-09-28 13:48:22 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-08-15 04:33:09 +00:00
|
|
|
version = "7.9.20140814";
|
2010-09-28 13:48:22 +00:00
|
|
|
name = "ghc-${version}";
|
2011-08-08 19:47:31 +00:00
|
|
|
|
2010-09-28 13:48:22 +00:00
|
|
|
src = fetchurl {
|
2014-08-15 04:33:09 +00:00
|
|
|
url = "http://deb.haskell.org/dailies/2014-08-14/ghc_${version}.orig.tar.bz2";
|
|
|
|
sha256 = "05vmlbzbfv72z570xmlh8n003z9xc4l5hixjqvczyyyisdvmyaa3";
|
2010-09-28 13:48:22 +00:00
|
|
|
};
|
|
|
|
|
2013-12-02 20:33:21 +00:00
|
|
|
buildInputs = [ ghc perl gmp ncurses happy alex ];
|
2010-09-28 13:48:22 +00:00
|
|
|
|
2012-06-08 08:25:30 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2010-09-28 13:48:22 +00:00
|
|
|
buildMK = ''
|
|
|
|
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
|
|
|
|
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
|
2012-11-07 13:43:39 +00:00
|
|
|
DYNAMIC_BY_DEFAULT = NO
|
2010-09-28 13:48:22 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
echo "${buildMK}" > mk/build.mk
|
2011-12-16 18:11:23 +00:00
|
|
|
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
|
2014-03-22 09:44:35 +00:00
|
|
|
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
|
2013-10-26 16:33:09 +00:00
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
|
2010-09-28 13:48:22 +00:00
|
|
|
'';
|
|
|
|
|
2013-08-11 20:08:26 +00:00
|
|
|
configureFlags = "--with-gcc=${stdenv.gcc}/bin/gcc";
|
2010-09-28 13:48:22 +00:00
|
|
|
|
|
|
|
# required, because otherwise all symbols from HSffi.o are stripped, and
|
|
|
|
# that in turn causes GHCi to abort
|
2013-08-11 20:08:26 +00:00
|
|
|
stripDebugFlags = [ "-S" "--keep-file-symbols" ];
|
2010-09-28 13:48:22 +00:00
|
|
|
|
|
|
|
meta = {
|
2011-12-16 18:11:23 +00:00
|
|
|
homepage = "http://haskell.org/ghc";
|
2010-09-28 13:48:22 +00:00
|
|
|
description = "The Glasgow Haskell Compiler";
|
|
|
|
maintainers = [
|
|
|
|
stdenv.lib.maintainers.marcweber
|
|
|
|
stdenv.lib.maintainers.andres
|
2011-12-16 18:11:23 +00:00
|
|
|
stdenv.lib.maintainers.simons
|
2010-09-28 13:48:22 +00:00
|
|
|
];
|
2013-03-23 12:05:43 +00:00
|
|
|
inherit (ghc.meta) license platforms;
|
2010-09-28 13:48:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|