2010-09-28 15:48:22 +02:00
|
|
|
{stdenv, fetchurl, ghc, perl, gmp, ncurses}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-09-05 15:29:33 +02:00
|
|
|
version = "7.3.20110825";
|
2011-08-08 21:47:31 +02:00
|
|
|
|
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
|
|
|
# TODO: Does this have to be here, or can it go to meta?
|
|
|
|
homepage = "http://haskell.org/ghc";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2011-08-05 15:30:42 +02:00
|
|
|
url = "${homepage}/dist/current/dist/${name}-src.tar.bz2";
|
2011-09-05 15:29:33 +02:00
|
|
|
sha256 = "06ngp3blg1nb1akiyxx2iypiwmybw4jg67lk9nmsn1jmj41v7dsm";
|
2010-09-28 15:48:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ghc perl gmp ncurses];
|
|
|
|
|
|
|
|
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"
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
echo "${buildMK}" > mk/build.mk
|
|
|
|
'';
|
|
|
|
|
|
|
|
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 = {
|
|
|
|
inherit homepage;
|
|
|
|
description = "The Glasgow Haskell Compiler";
|
|
|
|
maintainers = [
|
|
|
|
stdenv.lib.maintainers.marcweber
|
|
|
|
stdenv.lib.maintainers.andres
|
|
|
|
];
|
2011-08-09 09:42:05 +02:00
|
|
|
platforms = ghc.meta.platforms;
|
2010-09-28 15:48:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|