2016-02-21 21:15:04 +03:00
|
|
|
{ stdenv, fetchgit, bootPkgs, perl, gmp, ncurses, libiconv, binutils, coreutils
|
2015-12-16 21:18:29 +03:00
|
|
|
, autoconf, automake, happy, alex
|
|
|
|
}:
|
2015-01-16 21:31:34 +03:00
|
|
|
|
2016-02-21 21:15:04 +03:00
|
|
|
let
|
|
|
|
inherit (bootPkgs) ghc;
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2016-11-09 22:26:43 +03:00
|
|
|
version = "8.1.20161109";
|
2010-09-28 17:48:22 +04:00
|
|
|
name = "ghc-${version}";
|
2016-11-08 13:02:06 +03:00
|
|
|
rev = "2e8463b232054b788b73e6551947a9434aa76009";
|
2011-08-08 23:47:31 +04:00
|
|
|
|
2015-02-12 23:18:06 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.haskell.org/ghc.git";
|
|
|
|
inherit rev;
|
2016-11-09 22:26:43 +03:00
|
|
|
sha256 = "12nxai5qqnw42syhd0vzl2f9f8z28rc0fsa7g771dyzpqglak90l";
|
2010-09-28 17:48:22 +04:00
|
|
|
};
|
|
|
|
|
2015-12-16 21:18:29 +03:00
|
|
|
patches = [
|
2016-11-09 22:26:43 +03:00
|
|
|
./ghc-HEAD-dont-pass-linker-flags-via-response-files.patch # https://github.com/NixOS/nixpkgs/issues/10752
|
2015-12-16 21:18:29 +03:00
|
|
|
];
|
|
|
|
|
2015-02-04 02:34:08 +03:00
|
|
|
postUnpack = ''
|
2015-02-12 23:18:06 +03:00
|
|
|
pushd ghc-${builtins.substring 0 7 rev}
|
2015-08-09 17:28:12 +03:00
|
|
|
echo ${version} >VERSION
|
|
|
|
echo ${rev} >GIT_COMMIT_ID
|
2015-02-12 23:18:30 +03:00
|
|
|
patchShebangs .
|
2015-02-12 23:18:06 +03:00
|
|
|
./boot
|
|
|
|
popd
|
2015-02-04 02:34:08 +03:00
|
|
|
'';
|
|
|
|
|
2015-02-12 23:18:06 +03:00
|
|
|
buildInputs = [ ghc perl autoconf automake happy alex ];
|
2010-09-28 17:48:22 +04:00
|
|
|
|
2015-12-16 21:18:29 +03:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2010-09-28 17:48:22 +04:00
|
|
|
preConfigure = ''
|
2011-12-16 22:11:23 +04:00
|
|
|
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
|
2014-03-22 13:44:35 +04:00
|
|
|
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
|
2013-10-26 20:33:09 +04:00
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
|
2015-12-16 21:18:29 +03:00
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
export NIX_LDFLAGS+=" -no_dtrace_dof"
|
2010-09-28 17:48:22 +04:00
|
|
|
'';
|
|
|
|
|
2014-12-18 19:31:37 +03:00
|
|
|
configureFlags = [
|
2016-08-26 22:15:04 +03:00
|
|
|
"--with-cc=${stdenv.cc}/bin/cc"
|
2015-10-15 18:43:23 +03:00
|
|
|
"--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
|
2016-02-01 20:16:50 +03:00
|
|
|
"--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
|
2015-12-16 21:18:29 +03:00
|
|
|
] ++ stdenv.lib.optional stdenv.isDarwin [
|
|
|
|
"--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib"
|
2014-12-18 19:31:37 +03:00
|
|
|
];
|
|
|
|
|
2010-09-28 17:48:22 +04:00
|
|
|
# required, because otherwise all symbols from HSffi.o are stripped, and
|
|
|
|
# that in turn causes GHCi to abort
|
2015-02-04 02:34:08 +03:00
|
|
|
stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols";
|
2010-09-28 17:48:22 +04:00
|
|
|
|
2015-12-16 21:18:29 +03:00
|
|
|
postInstall = ''
|
|
|
|
# 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 01:06:51 +03:00
|
|
|
sed -i -e '2i export PATH="$PATH:${stdenv.lib.makeBinPath [ binutils coreutils ]}"' $i
|
2015-12-16 21:18:29 +03:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2016-02-21 21:15:04 +03:00
|
|
|
passthru = {
|
|
|
|
inherit bootPkgs;
|
|
|
|
};
|
|
|
|
|
2010-09-28 17:48:22 +04:00
|
|
|
meta = {
|
2011-12-16 22:11:23 +04:00
|
|
|
homepage = "http://haskell.org/ghc";
|
2010-09-28 17:48:22 +04:00
|
|
|
description = "The Glasgow Haskell Compiler";
|
2016-05-16 23:30:20 +03:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ];
|
2013-03-23 16:05:43 +04:00
|
|
|
inherit (ghc.meta) license platforms;
|
2010-09-28 17:48:22 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|