2012-04-23 17:47:31 +02:00
|
|
|
{ stdenv, fetchurl, ghc, perl, gmp, ncurses }:
|
2010-09-28 15:48:22 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-01-30 12:25:38 +01:00
|
|
|
version = "7.7.20121213";
|
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 {
|
2012-04-20 14:22:23 +02:00
|
|
|
url = "http://haskell.org/ghc/dist/current/dist/${name}-src.tar.bz2";
|
2013-01-30 12:25:38 +01:00
|
|
|
sha256 = "0z9ld6271jzv3mx02vqaakirj79pm2vzxnv5a178r6v874qbzx3p";
|
2010-09-28 15:48:22 +02:00
|
|
|
};
|
|
|
|
|
2012-04-23 17:47:31 +02:00
|
|
|
buildInputs = [ ghc perl gmp ncurses ];
|
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
|
2010-09-28 15:48:22 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags=[
|
|
|
|
"--with-gcc=${stdenv.gcc}/bin/gcc"
|
|
|
|
];
|
|
|
|
|
|
|
|
# required, because otherwise all symbols from HSffi.o are stripped, and
|
|
|
|
# that in turn causes GHCi to abort
|
|
|
|
stripDebugFlags=["-S" "--keep-file-symbols"];
|
|
|
|
|
|
|
|
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
|
|
|
];
|
2011-08-09 09:42:05 +02:00
|
|
|
platforms = ghc.meta.platforms;
|
2010-09-28 15:48:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|