2011-02-16 14:18:08 +01:00
|
|
|
{ fetchurl, stdenv, libtool, readline, gmp, pkgconfig, boehmgc, libunistring
|
|
|
|
, libffi, gawk, makeWrapper, coverageAnalysis ? null }:
|
2005-02-25 23:22:40 +01:00
|
|
|
|
2011-02-16 14:18:08 +01:00
|
|
|
# Do either a coverage analysis build or a standard build.
|
|
|
|
(if coverageAnalysis != null
|
|
|
|
then coverageAnalysis
|
|
|
|
else stdenv.mkDerivation)
|
|
|
|
|
|
|
|
rec {
|
2011-04-28 22:57:48 +02:00
|
|
|
name = "guile-2.0.1";
|
2009-11-22 23:16:58 +01:00
|
|
|
|
2008-02-20 10:02:00 +01:00
|
|
|
src = fetchurl {
|
2011-02-16 14:18:08 +01:00
|
|
|
url = "mirror://gnu/guile/${name}.tar.gz";
|
2011-04-28 22:57:48 +02:00
|
|
|
sha256 = "1miq6rlzj8k43aby4874ds55z4g1pmfgbfhwkczf57bxlan8q6gi";
|
2008-02-20 10:02:00 +01:00
|
|
|
};
|
2008-02-12 11:41:00 +01:00
|
|
|
|
2011-02-16 14:18:08 +01:00
|
|
|
buildInputs =
|
|
|
|
[ makeWrapper gawk readline libtool libunistring
|
|
|
|
libffi pkgconfig
|
|
|
|
];
|
|
|
|
propagatedBuildInputs = [ gmp boehmgc ]
|
|
|
|
|
|
|
|
# XXX: These ones aren't normally needed here, but since
|
|
|
|
# `libguile-2.0.la' reads `-lltdl -lunistring', adding them here will add
|
|
|
|
# the needed `-L' flags. As for why the `.la' file lacks the `-L' flags,
|
|
|
|
# see below.
|
|
|
|
++ [ libtool libunistring ];
|
2010-06-22 10:06:12 +02:00
|
|
|
|
2011-02-16 14:18:08 +01:00
|
|
|
patches =
|
|
|
|
stdenv.lib.optionals (coverageAnalysis != null)
|
|
|
|
[ ./gcov-file-name.patch ./disable-gc-sensitive-tests.patch ];
|
2008-02-12 11:41:00 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/guile-snarf --prefix PATH : "${gawk}/bin"
|
|
|
|
|
2011-02-16 14:18:08 +01:00
|
|
|
# XXX: See http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/18903 for
|
|
|
|
# why `--with-libunistring-prefix' and similar options coming from
|
|
|
|
# `AC_LIB_LINKFLAGS_BODY' don't work on NixOS/x86_64.
|
|
|
|
sed -i "$out/lib/pkgconfig/guile-2.0.pc" \
|
|
|
|
-e 's|-lunistring|-L${libunistring}/lib -lunistring|g ;
|
|
|
|
s|^Cflags:\(.*\)$|Cflags: -I${libunistring}/include \1|g ;
|
|
|
|
s|-lltdl|-L${libtool}/lib -lltdl|g'
|
2008-06-16 16:27:26 +02:00
|
|
|
'';
|
|
|
|
|
2011-02-16 14:18:08 +01:00
|
|
|
doCheck = true;
|
2008-03-13 15:18:29 +01:00
|
|
|
|
2008-02-12 11:41:00 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
2008-02-20 10:02:00 +01:00
|
|
|
|
|
|
|
meta = {
|
2011-02-16 14:18:08 +01:00
|
|
|
description = "GNU Guile 2.0, an embeddable Scheme implementation";
|
|
|
|
|
2008-03-20 15:35:03 +01:00
|
|
|
longDescription = ''
|
2011-02-16 14:18:08 +01:00
|
|
|
GNU Guile is an implementation of the Scheme programming language, with
|
|
|
|
support for many SRFIs, packaged for use in a wide variety of
|
|
|
|
environments. In addition to implementing the R5RS Scheme standard
|
|
|
|
and a large subset of R6RS, Guile includes a module system, full access
|
|
|
|
to POSIX system calls, networking support, multiple threads, dynamic
|
|
|
|
linking, a foreign function call interface, and powerful string
|
|
|
|
processing.
|
2008-03-20 15:35:03 +01:00
|
|
|
'';
|
|
|
|
|
2008-02-20 10:02:00 +01:00
|
|
|
homepage = http://www.gnu.org/software/guile/;
|
2011-02-16 14:18:08 +01:00
|
|
|
license = "LGPLv3+";
|
2009-07-05 23:41:36 +02:00
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
2011-02-16 14:18:08 +01:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-02-20 10:02:00 +01:00
|
|
|
};
|
2005-02-25 23:22:40 +01:00
|
|
|
}
|