2012-01-18 20:53:01 +00:00
|
|
|
{ fetchurl, stdenv, libtool, readline, gmp, pkgconfig, boehmgc, libunistring
|
2016-12-01 03:17:04 +00:00
|
|
|
, libffi, gawk, makeWrapper, fetchpatch, coverageAnalysis ? null, gnu ? null }:
|
2005-02-25 22:22:40 +00:00
|
|
|
|
2011-02-16 13:18:08 +00:00
|
|
|
# Do either a coverage analysis build or a standard build.
|
|
|
|
(if coverageAnalysis != null
|
|
|
|
then coverageAnalysis
|
|
|
|
else stdenv.mkDerivation)
|
|
|
|
|
2012-02-09 09:16:17 +00:00
|
|
|
(rec {
|
2016-10-17 07:44:48 +00:00
|
|
|
name = "guile-2.0.13";
|
2009-11-22 22:16:58 +00:00
|
|
|
|
2008-02-20 09:02:00 +00:00
|
|
|
src = fetchurl {
|
2011-10-22 16:21:07 +00:00
|
|
|
url = "mirror://gnu/guile/${name}.tar.xz";
|
2016-10-17 07:44:48 +00:00
|
|
|
sha256 = "12yqkr974y91ylgw6jnmci2v90i90s7h9vxa4zk0sai8vjnz4i1p";
|
2008-02-20 09:02:00 +00:00
|
|
|
};
|
2008-02-12 10:41:00 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper gawk pkgconfig ];
|
2011-11-13 21:28:35 +00:00
|
|
|
buildInputs = [ readline libtool libunistring libffi ];
|
2011-02-16 13:18:08 +00: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 08:06:12 +00:00
|
|
|
|
2011-11-13 21:28:35 +00:00
|
|
|
# A native Guile 2.0 is needed to cross-build Guile.
|
2012-12-28 18:20:09 +00:00
|
|
|
selfNativeBuildInput = true;
|
2011-11-13 21:28:35 +00:00
|
|
|
|
2014-11-04 11:24:23 +00: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 21:28:35 +00:00
|
|
|
|
2016-12-01 03:17:04 +00:00
|
|
|
patches = [ ./disable-gc-sensitive-tests.patch ./eai_system.patch ./clang.patch
|
|
|
|
(fetchpatch {
|
|
|
|
# Fixes stability issues with 00-repl-server.test
|
|
|
|
url = "http://git.savannah.gnu.org/cgit/guile.git/patch/?id=2fbde7f02adb8c6585e9baf6e293ee49cd23d4c4";
|
|
|
|
sha256 = "0p6c1lmw1iniq03z7x5m65kg3lq543kgvdb4nrxsaxjqf3zhl77v";
|
|
|
|
})
|
|
|
|
] ++
|
2011-11-13 22:15:58 +00:00
|
|
|
(stdenv.lib.optional (coverageAnalysis != null) ./gcov-file-name.patch);
|
2008-02-12 10:41:00 +00:00
|
|
|
|
2012-09-24 13:40:33 +00: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 11:28:48 +00:00
|
|
|
|
|
|
|
# don't have "libgcc_s.so.1" on darwin
|
|
|
|
LDFLAGS = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s";
|
2012-09-24 13:40:33 +00:00
|
|
|
|
2017-02-13 22:01:46 +00:00
|
|
|
configureFlags = [ "--with-libreadline-prefix" ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isSunOS [
|
|
|
|
# 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.
|
|
|
|
"--with-libgmp-prefix=${gmp.dev}"
|
|
|
|
|
|
|
|
# Same for these (?).
|
|
|
|
"--with-libreadline-prefix=${readline.dev}"
|
|
|
|
"--with-libunistring-prefix=${libunistring}"
|
|
|
|
|
|
|
|
# See below.
|
|
|
|
"--without-threads"
|
|
|
|
];
|
2016-03-21 23:58:51 +00:00
|
|
|
|
2008-02-12 10:41:00 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/guile-snarf --prefix PATH : "${gawk}/bin"
|
|
|
|
|
2011-02-16 13:18:08 +00: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 14:33:49 +00:00
|
|
|
s|-lltdl|-L${libtool.lib}/lib -lltdl|g'
|
2008-06-16 14:27:26 +00:00
|
|
|
'';
|
|
|
|
|
2013-05-27 11:28:48 +00:00
|
|
|
# make check doesn't work on darwin
|
2016-12-04 09:11:16 +00:00
|
|
|
# On Linuxes+Hydra the tests are flaky; feel free to investigate deeper.
|
|
|
|
doCheck = false;
|
2008-03-13 14:18:29 +00:00
|
|
|
|
2012-05-22 21:18:20 +00:00
|
|
|
setupHook = ./setup-hook-2.0.sh;
|
2008-02-20 09:02:00 +00:00
|
|
|
|
2012-05-09 13:42:46 +00: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 09:02:00 +00:00
|
|
|
meta = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Embeddable Scheme implementation";
|
2013-05-27 11:28:48 +00: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 13:18:08 +00:00
|
|
|
|
2008-03-20 14:35:03 +00:00
|
|
|
longDescription = ''
|
2011-02-16 13:18:08 +00: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 14:35:03 +00:00
|
|
|
'';
|
2008-02-20 09:02:00 +00:00
|
|
|
};
|
2012-08-09 16:39:30 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
//
|
|
|
|
|
2013-04-21 10:06:45 +00:00
|
|
|
(stdenv.lib.optionalAttrs (!stdenv.isLinux) {
|
|
|
|
# Work around <http://bugs.gnu.org/14201>.
|
|
|
|
SHELL = "/bin/sh";
|
|
|
|
CONFIG_SHELL = "/bin/sh";
|
2017-02-13 22:01:46 +00:00
|
|
|
})
|