2016-02-21 19:15:04 +01:00
|
|
|
{ stdenv, fetchgit, bootPkgs, perl, gmp, ncurses, libiconv, binutils, coreutils
|
2016-12-24 18:37:04 +01:00
|
|
|
, autoconf, automake, happy, alex, python3, crossSystem, selfPkgs, cross ? null
|
2015-12-16 19:18:29 +01:00
|
|
|
}:
|
2015-01-16 19:31:34 +01:00
|
|
|
|
2016-02-21 19:15:04 +01:00
|
|
|
let
|
|
|
|
inherit (bootPkgs) ghc;
|
|
|
|
|
2016-12-24 18:37:04 +01:00
|
|
|
commonBuildInputs = [ ghc perl autoconf automake happy alex python3 ];
|
2016-11-15 22:59:09 +01:00
|
|
|
|
2017-01-06 14:39:12 +01:00
|
|
|
version = "8.1.20170106";
|
2017-01-07 04:10:29 +01:00
|
|
|
rev = "b4f2afe70ddbd0576b4eba3f82ba1ddc52e9b3bd";
|
2016-11-15 22:59:09 +01:00
|
|
|
|
|
|
|
commonPreConfigure = ''
|
2017-01-07 04:10:29 +01:00
|
|
|
echo ${version} >VERSION
|
|
|
|
echo ${rev} >GIT_COMMIT_ID
|
|
|
|
./boot
|
2016-11-15 22:59:09 +01:00
|
|
|
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
|
|
|
|
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
|
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
|
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
export NIX_LDFLAGS+=" -no_dtrace_dof"
|
|
|
|
'';
|
|
|
|
in stdenv.mkDerivation (rec {
|
2017-01-07 04:10:29 +01:00
|
|
|
inherit version rev;
|
2010-09-28 15:48:22 +02:00
|
|
|
name = "ghc-${version}";
|
2011-08-08 21:47:31 +02:00
|
|
|
|
2015-02-12 21:18:06 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.haskell.org/ghc.git";
|
|
|
|
inherit rev;
|
2017-01-06 14:39:12 +01:00
|
|
|
sha256 = "1h064nikx5srsd7qvz19f6dxvnpfjp0b3b94xs1f4nar18hzf4j0";
|
2010-09-28 15:48:22 +02:00
|
|
|
};
|
|
|
|
|
2016-12-24 18:37:58 +01:00
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
|
2017-01-07 04:10:29 +01:00
|
|
|
preConfigure = commonPreConfigure;
|
2015-02-04 00:34:08 +01:00
|
|
|
|
2016-11-15 22:59:09 +01:00
|
|
|
buildInputs = commonBuildInputs;
|
2010-09-28 15:48:22 +02:00
|
|
|
|
2015-12-16 19:18:29 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-12-18 17:31:37 +01:00
|
|
|
configureFlags = [
|
2016-11-16 00:30:26 +01:00
|
|
|
"CC=${stdenv.cc}/bin/cc"
|
2015-10-15 17:43:23 +02:00
|
|
|
"--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
|
2016-02-01 18:16:50 +01:00
|
|
|
"--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
|
2015-12-16 19:18:29 +01:00
|
|
|
] ++ stdenv.lib.optional stdenv.isDarwin [
|
|
|
|
"--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib"
|
2014-12-18 17:31:37 +01:00
|
|
|
];
|
|
|
|
|
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
|
2015-02-04 00:34:08 +01:00
|
|
|
stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols";
|
2010-09-28 15:48:22 +02:00
|
|
|
|
2016-12-24 18:37:04 +01:00
|
|
|
checkTarget = "test";
|
|
|
|
|
2015-12-16 19:18:29 +01:00
|
|
|
postInstall = ''
|
2016-12-15 01:25:58 +01:00
|
|
|
paxmark m $out/lib/${name}/bin/{ghc,haddock}
|
|
|
|
|
2015-12-16 19:18:29 +01:00
|
|
|
# Install the bash completion file.
|
|
|
|
install -D -m 444 utils/completion/ghc.bash $out/share/bash-completion/completions/ghc
|
|
|
|
|
|
|
|
# Patch scripts to include "readelf" and "cat" in $PATH.
|
|
|
|
for i in "$out/bin/"*; do
|
|
|
|
test ! -h $i || continue
|
|
|
|
egrep --quiet '^#!' <(head -n 1 $i) || continue
|
2016-08-23 00:06:51 +02:00
|
|
|
sed -i -e '2i export PATH="$PATH:${stdenv.lib.makeBinPath [ binutils coreutils ]}"' $i
|
2015-12-16 19:18:29 +01:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2016-02-21 19:15:04 +01:00
|
|
|
passthru = {
|
|
|
|
inherit bootPkgs;
|
2016-11-18 16:44:53 +01:00
|
|
|
} // stdenv.lib.optionalAttrs (crossSystem != null) {
|
|
|
|
crossCompiler = selfPkgs.ghc.override {
|
|
|
|
cross = crossSystem;
|
|
|
|
bootPkgs = selfPkgs;
|
|
|
|
};
|
2016-02-21 19:15:04 +01:00
|
|
|
};
|
|
|
|
|
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";
|
2016-05-16 22:30:20 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ];
|
2013-03-23 13:05:43 +01:00
|
|
|
inherit (ghc.meta) license platforms;
|
2010-09-28 15:48:22 +02:00
|
|
|
};
|
|
|
|
|
2016-11-15 22:59:09 +01:00
|
|
|
} // stdenv.lib.optionalAttrs (cross != null) {
|
|
|
|
name = "${cross.config}-ghc-${version}";
|
|
|
|
|
2017-01-24 00:35:03 +01:00
|
|
|
patches = [ ./ios-linker.patch ];
|
|
|
|
|
2016-11-15 22:59:09 +01:00
|
|
|
preConfigure = commonPreConfigure + ''
|
2017-01-24 00:35:03 +01:00
|
|
|
sed 's|#BuildFlavour = quick-cross|BuildFlavour = quick-cross|' mk/build.mk.sample > mk/build.mk
|
|
|
|
echo "GhcRtsCcOpts = -glldb -Og" >> mk/build.mk
|
|
|
|
'';
|
|
|
|
|
|
|
|
postUnpack = ''
|
|
|
|
mkdir -p $out/nix-support
|
|
|
|
mv $sourceRoot $out/nix-support/source
|
|
|
|
sourceRoot=$out/nix-support/source
|
2016-11-15 22:59:09 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
2016-11-18 16:44:53 +01:00
|
|
|
"CC=${stdenv.ccCross}/bin/${cross.config}-cc"
|
|
|
|
"LD=${stdenv.binutilsCross}/bin/${cross.config}-ld"
|
|
|
|
"AR=${stdenv.binutilsCross}/bin/${cross.config}-ar"
|
|
|
|
"NM=${stdenv.binutilsCross}/bin/${cross.config}-nm"
|
|
|
|
"RANLIB=${stdenv.binutilsCross}/bin/${cross.config}-ranlib"
|
2016-11-15 22:59:09 +01:00
|
|
|
"--target=${cross.config}"
|
2016-11-18 16:44:53 +01:00
|
|
|
"--enable-bootstrap-with-devel-snapshot"
|
2016-11-15 22:59:09 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = commonBuildInputs ++ [ stdenv.ccCross stdenv.binutilsCross ];
|
|
|
|
|
|
|
|
dontSetConfigureCross = true;
|
2016-11-18 16:44:53 +01:00
|
|
|
|
2017-01-24 00:35:03 +01:00
|
|
|
dontStrip = true;
|
|
|
|
|
2016-11-18 16:44:53 +01:00
|
|
|
passthru = {
|
|
|
|
inherit bootPkgs cross;
|
|
|
|
|
|
|
|
cc = "${stdenv.ccCross}/bin/${cross.config}-cc";
|
|
|
|
|
|
|
|
ld = "${stdenv.binutilsCross}/bin/${cross.config}-ld";
|
|
|
|
};
|
2016-11-15 22:59:09 +01:00
|
|
|
})
|