2012-01-18 12:53:01 -08:00
|
|
|
{ fetchurl, stdenv, libtool, readline, gmp, pkgconfig, boehmgc, libunistring
|
2012-05-09 06:42:46 -07:00
|
|
|
, libffi, gawk, makeWrapper, coverageAnalysis ? null, gnu ? null }:
|
2005-02-25 14:22:40 -08:00
|
|
|
|
2011-02-16 05:18:08 -08:00
|
|
|
# Do either a coverage analysis build or a standard build.
|
|
|
|
(if coverageAnalysis != null
|
|
|
|
then coverageAnalysis
|
|
|
|
else stdenv.mkDerivation)
|
|
|
|
|
2012-02-09 01:16:17 -08:00
|
|
|
(rec {
|
2014-08-17 13:17:13 -07:00
|
|
|
name = "guile-2.0.11";
|
2009-11-22 14:16:58 -08:00
|
|
|
|
2008-02-20 01:02:00 -08:00
|
|
|
src = fetchurl {
|
2011-10-22 09:21:07 -07:00
|
|
|
url = "mirror://gnu/guile/${name}.tar.xz";
|
2014-08-17 13:17:13 -07:00
|
|
|
sha256 = "1qh3j7308qvsjgwf7h94yqgckpbgz2k3yqdkzsyhqcafvfka9l5f";
|
2008-02-20 01:02:00 -08:00
|
|
|
};
|
2008-02-12 02:41:00 -08:00
|
|
|
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ makeWrapper gawk pkgconfig ];
|
2011-11-13 13:28:35 -08:00
|
|
|
buildInputs = [ readline libtool libunistring libffi ];
|
2011-02-16 05:18:08 -08:00
|
|
|
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 01:06:12 -07:00
|
|
|
|
2011-11-13 13:28:35 -08:00
|
|
|
# A native Guile 2.0 is needed to cross-build Guile.
|
2012-12-28 10:20:09 -08:00
|
|
|
selfNativeBuildInput = true;
|
2011-11-13 13:28:35 -08:00
|
|
|
|
2014-11-04 03:24:23 -08:00
|
|
|
# Guile 2.0.11 repeatable fails with 8-core parallel building because
|
|
|
|
# libguile/vm-i-system.i is not created in time
|
|
|
|
enableParallelBuilding = false;
|
2011-11-13 13:28:35 -08:00
|
|
|
|
2014-08-17 13:17:13 -07:00
|
|
|
patches = [ ./disable-gc-sensitive-tests.patch ./eai_system.patch ./clang.patch ] ++
|
2011-11-13 14:15:58 -08:00
|
|
|
(stdenv.lib.optional (coverageAnalysis != null) ./gcov-file-name.patch);
|
2008-02-12 02:41:00 -08:00
|
|
|
|
2012-09-24 06:40:33 -07:00
|
|
|
# Explicitly link against libgcc_s, to work around the infamous
|
|
|
|
# "libgcc_s.so.1 must be installed for pthread_cancel to work".
|
2013-05-27 04:28:48 -07:00
|
|
|
|
|
|
|
# don't have "libgcc_s.so.1" on darwin
|
|
|
|
LDFLAGS = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s";
|
2012-09-24 06:40:33 -07:00
|
|
|
|
2016-03-21 16:58:51 -07:00
|
|
|
configureFlags = [ "--with-libreadline-prefix" ];
|
|
|
|
|
2008-02-12 02:41:00 -08:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/guile-snarf --prefix PATH : "${gawk}/bin"
|
|
|
|
|
2011-02-16 05:18:08 -08: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 ;
|
2015-10-03 07:33:49 -07:00
|
|
|
s|-lltdl|-L${libtool.lib}/lib -lltdl|g'
|
2008-06-16 07:27:26 -07:00
|
|
|
'';
|
|
|
|
|
2013-05-27 04:28:48 -07:00
|
|
|
# make check doesn't work on darwin
|
|
|
|
doCheck = !stdenv.isDarwin;
|
2008-03-13 07:18:29 -07:00
|
|
|
|
2012-05-22 14:18:20 -07:00
|
|
|
setupHook = ./setup-hook-2.0.sh;
|
2008-02-20 01:02:00 -08:00
|
|
|
|
2012-05-09 06:42:46 -07:00
|
|
|
crossAttrs.preConfigure =
|
|
|
|
stdenv.lib.optionalString (stdenv.cross.config == "i586-pc-gnu")
|
|
|
|
# On GNU, libgc depends on libpthread, but the cross linker doesn't
|
|
|
|
# know where to find libpthread, which leads to erroneous test failures
|
|
|
|
# in `configure', where `-pthread' and `-lpthread' aren't explicitly
|
|
|
|
# passed. So it needs some help (XXX).
|
|
|
|
"export LDFLAGS=-Wl,-rpath-link=${gnu.libpthreadCross}/lib";
|
|
|
|
|
|
|
|
|
2008-02-20 01:02:00 -08:00
|
|
|
meta = {
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "Embeddable Scheme implementation";
|
2013-05-27 04:28:48 -07:00
|
|
|
homepage = http://www.gnu.org/software/guile/;
|
|
|
|
license = stdenv.lib.licenses.lgpl3Plus;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ ludo lovek323 ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2011-02-16 05:18:08 -08:00
|
|
|
|
2008-03-20 07:35:03 -07:00
|
|
|
longDescription = ''
|
2011-02-16 05:18:08 -08: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 07:35:03 -07:00
|
|
|
'';
|
2008-02-20 01:02:00 -08:00
|
|
|
};
|
2005-02-25 14:22:40 -08:00
|
|
|
}
|
2012-02-09 01:16:17 -08:00
|
|
|
|
|
|
|
//
|
|
|
|
|
2012-08-09 09:39:30 -07:00
|
|
|
(stdenv.lib.optionalAttrs stdenv.isSunOS {
|
|
|
|
# TODO: Move me above.
|
2012-08-10 07:30:28 -07:00
|
|
|
configureFlags =
|
|
|
|
[
|
|
|
|
# Make sure the right <gmp.h> is found, and not the incompatible
|
|
|
|
# /usr/include/mp.h from OpenSolaris. See
|
|
|
|
# <https://lists.gnu.org/archive/html/hydra-users/2012-08/msg00000.html>
|
|
|
|
# for details.
|
2016-04-16 09:58:41 -07:00
|
|
|
"--with-libgmp-prefix=${gmp.dev}"
|
2012-08-10 07:30:28 -07:00
|
|
|
|
|
|
|
# Same for these (?).
|
2016-04-16 10:46:17 -07:00
|
|
|
"--with-libreadline-prefix=${readline.dev}"
|
2012-08-10 07:30:28 -07:00
|
|
|
"--with-libunistring-prefix=${libunistring}"
|
2012-08-11 12:53:43 -07:00
|
|
|
|
|
|
|
# See below.
|
|
|
|
"--without-threads"
|
2012-08-10 07:30:28 -07:00
|
|
|
];
|
2012-08-09 09:39:30 -07:00
|
|
|
})
|
|
|
|
|
|
|
|
//
|
|
|
|
|
2013-04-21 03:06:45 -07:00
|
|
|
(stdenv.lib.optionalAttrs (!stdenv.isLinux) {
|
|
|
|
# Work around <http://bugs.gnu.org/14201>.
|
|
|
|
SHELL = "/bin/sh";
|
|
|
|
CONFIG_SHELL = "/bin/sh";
|
|
|
|
}))
|