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