2017-01-24 23:00:54 +00:00
|
|
|
{ stdenv, fetchurl, ghc, perl, ncurses, libiconv
|
|
|
|
|
2017-09-10 19:36:48 +00:00
|
|
|
, # If enabled, GHC will be built with the GPL-free but slower integer-simple
|
2017-01-24 23:00:54 +00:00
|
|
|
# library instead of the faster but GPLed integer-gmp library.
|
2017-09-10 19:36:48 +00:00
|
|
|
enableIntegerSimple ? false, gmp ? null
|
2017-01-24 23:00:54 +00:00
|
|
|
}:
|
2012-04-20 12:22:23 +00:00
|
|
|
|
2017-09-10 19:36:48 +00:00
|
|
|
# TODO(@Ericson2314): Cross compilation support
|
|
|
|
assert stdenv.targetPlatform == stdenv.hostPlatform;
|
|
|
|
assert !enableIntegerSimple -> gmp != null;
|
|
|
|
|
2012-04-20 12:22:23 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2012-06-11 16:25:45 +00:00
|
|
|
version = "7.4.2";
|
2012-04-20 12:22:23 +00:00
|
|
|
|
|
|
|
name = "ghc-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2012-06-11 16:25:45 +00:00
|
|
|
url = "http://haskell.org/ghc/dist/7.4.2/${name}-src.tar.bz2";
|
|
|
|
sha256 = "0vc3zmxqi4gflssmj35n5c8idbvyrhd88abi50whbirwlf4i5vpj";
|
2012-04-20 12:22:23 +00:00
|
|
|
};
|
|
|
|
|
2016-08-26 14:56:03 +00:00
|
|
|
patches = [ ./fix-7.4.2-clang.patch ./relocation.patch ];
|
2015-02-03 23:34:08 +00:00
|
|
|
|
2017-01-24 23:00:54 +00:00
|
|
|
buildInputs = [ ghc perl ncurses ]
|
|
|
|
++ stdenv.lib.optional (!enableIntegerSimple) gmp;
|
2015-01-14 21:16:44 +00:00
|
|
|
|
2012-04-20 12:22:23 +00:00
|
|
|
buildMK = ''
|
2015-10-05 18:32:54 +00:00
|
|
|
libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include"
|
2016-02-01 17:16:50 +00:00
|
|
|
libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib"
|
2015-02-03 23:34:08 +00:00
|
|
|
${stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include"
|
|
|
|
libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib"
|
|
|
|
''}
|
2017-01-24 23:00:54 +00:00
|
|
|
'' + (if enableIntegerSimple then ''
|
|
|
|
INTEGER_LIBRARY=integer-simple
|
|
|
|
'' else ''
|
|
|
|
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib"
|
|
|
|
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include"
|
|
|
|
'');
|
2012-04-20 12:22:23 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
echo "${buildMK}" > mk/build.mk
|
|
|
|
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
|
2014-03-22 09:44:19 +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}"
|
2015-02-03 23:34:08 +00:00
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
find . -name '*.hs' | xargs sed -i -e 's|ASSERT (|ASSERT(|' -e 's|ASSERT2 (|ASSERT2(|' -e 's|WARN (|WARN(|'
|
|
|
|
find . -name '*.lhs' | xargs sed -i -e 's|ASSERT (|ASSERT(|' -e 's|ASSERT2 (|ASSERT2(|' -e 's|WARN (|WARN(|'
|
|
|
|
export NIX_LDFLAGS+=" -no_dtrace_dof"
|
2012-04-20 12:22:23 +00:00
|
|
|
'';
|
|
|
|
|
2015-06-12 08:54:02 +00:00
|
|
|
configureFlags = if stdenv.isDarwin then "--with-gcc=${./gcc-clang-wrapper.sh}"
|
2015-02-03 23:34:08 +00:00
|
|
|
else "--with-gcc=${stdenv.cc}/bin/gcc";
|
2012-04-20 12:22:23 +00:00
|
|
|
|
|
|
|
# required, because otherwise all symbols from HSffi.o are stripped, and
|
|
|
|
# that in turn causes GHCi to abort
|
2015-02-12 20:26:48 +00:00
|
|
|
stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols";
|
2012-04-20 12:22:23 +00:00
|
|
|
|
2017-09-10 19:36:48 +00:00
|
|
|
passthru = { targetPrefix = ""; };
|
|
|
|
|
2012-04-20 12:22:23 +00:00
|
|
|
meta = {
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://haskell.org/ghc;
|
2012-04-20 12:22:23 +00:00
|
|
|
description = "The Glasgow Haskell Compiler";
|
|
|
|
maintainers = [
|
|
|
|
stdenv.lib.maintainers.marcweber
|
|
|
|
stdenv.lib.maintainers.andres
|
2016-05-16 20:30:20 +00:00
|
|
|
stdenv.lib.maintainers.peti
|
2012-04-20 12:22:23 +00:00
|
|
|
];
|
2013-03-23 12:05:43 +00:00
|
|
|
inherit (ghc.meta) license platforms;
|
2012-04-20 12:22:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|