2017-02-02 16:44:11 +00:00
|
|
|
{ stdenv, targetPackages
|
|
|
|
|
|
|
|
, fetchurl, ghc, perl
|
|
|
|
, libffi, libiconv ? null, ncurses
|
2017-01-24 23:00:54 +00:00
|
|
|
|
2017-09-10 20:36:48 +01: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 20:36:48 +01:00
|
|
|
enableIntegerSimple ? false, gmp ? null
|
2017-01-24 23:00:54 +00:00
|
|
|
}:
|
2014-12-23 19:31:19 +00:00
|
|
|
|
2017-09-10 20:36:48 +01:00
|
|
|
# TODO(@Ericson2314): Cross compilation support
|
|
|
|
assert stdenv.targetPlatform == stdenv.hostPlatform;
|
|
|
|
assert !enableIntegerSimple -> gmp != null;
|
|
|
|
|
2017-02-02 16:44:11 +00:00
|
|
|
let
|
2014-12-23 19:31:19 +00:00
|
|
|
buildMK = ''
|
2015-10-05 19:32:54 +01: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-22 20:55:27 +00:00
|
|
|
DYNAMIC_BY_DEFAULT = NO
|
2017-09-19 04:56:47 +01:00
|
|
|
${stdenv.lib.optionalString (stdenv.hostPlatform.libc != "glibc") ''
|
2015-02-03 23:34:08 +00:00
|
|
|
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 ''
|
2017-09-10 23:29:27 +01:00
|
|
|
INTEGER_LIBRARY = integer-simple
|
2017-01-24 23:00:54 +00:00
|
|
|
'' 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"
|
|
|
|
'');
|
2014-12-23 19:31:19 +00:00
|
|
|
|
2017-02-02 16:44:11 +00:00
|
|
|
# Splicer will pull out correct variations
|
|
|
|
libDeps = [ ncurses ]
|
|
|
|
++ stdenv.lib.optional (!enableIntegerSimple) gmp
|
2017-09-19 04:56:47 +01:00
|
|
|
++ stdenv.lib.optional (stdenv.hostPlatform.libc != "glibc") libiconv;
|
2017-02-02 16:44:11 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "7.8.4";
|
|
|
|
name = "ghc-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.haskell.org/ghc/dist/${version}/${name}-src.tar.xz";
|
|
|
|
sha256 = "1i4254akbb4ym437rf469gc0m40bxm31blp6s1z1g15jmnacs6f3";
|
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
patches = [ ./relocation.patch ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin ./hpc-7.8.4.patch;
|
|
|
|
|
2014-12-23 19:31:19 +00:00
|
|
|
preConfigure = ''
|
2017-09-18 17:04:22 +01:00
|
|
|
echo -n "${buildMK}" > mk/build.mk
|
2014-12-23 19:31:19 +00:00
|
|
|
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
|
|
|
|
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
|
2017-09-10 23:29:27 +01:00
|
|
|
export NIX_LDFLAGS+=" -rpath $out/lib/ghc-${version}"
|
2015-02-03 23:34:08 +00:00
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
export NIX_LDFLAGS+=" -no_dtrace_dof"
|
2014-12-23 19:31:19 +00:00
|
|
|
'';
|
|
|
|
|
2017-02-02 16:44:11 +00:00
|
|
|
# TODO(@Ericson2314): Always pass "--target" and always prefix.
|
|
|
|
configurePlatforms = [ "build" "host" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ ghc perl ];
|
|
|
|
depsBuildTarget = [ targetPackages.stdenv.cc ];
|
|
|
|
|
|
|
|
buildInputs = libDeps;
|
|
|
|
propagatedBuildInputs = [ targetPackages.stdenv.cc ];
|
|
|
|
|
|
|
|
depsTargetTarget = map stdenv.lib.getDev libDeps;
|
|
|
|
depsTargetTargetPropagated = map (stdenv.lib.getOutput "out") libDeps;
|
|
|
|
|
2014-12-23 19:31:19 +00:00
|
|
|
# required, because otherwise all symbols from HSffi.o are stripped, and
|
|
|
|
# that in turn causes GHCi to abort
|
2015-02-03 23:34:08 +00:00
|
|
|
stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols";
|
2014-12-23 19:31:19 +00:00
|
|
|
|
2017-12-24 17:31:37 +00:00
|
|
|
passthru = {
|
|
|
|
targetPrefix = "";
|
|
|
|
|
|
|
|
# Our Cabal compiler name
|
|
|
|
haskellCompilerName = "ghc";
|
|
|
|
};
|
2017-09-10 20:36:48 +01:00
|
|
|
|
2015-03-25 14:51:39 +00:00
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://haskell.org/ghc;
|
2014-12-23 19:31:19 +00:00
|
|
|
description = "The Glasgow Haskell Compiler";
|
2016-05-16 21:30:20 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ];
|
2015-03-25 14:51:39 +00:00
|
|
|
inherit (ghc.meta) license platforms;
|
2014-12-23 19:31:19 +00:00
|
|
|
};
|
|
|
|
|
2017-02-02 16:44:11 +00:00
|
|
|
}
|