2018-03-05 23:45:16 +00:00
|
|
|
{ stdenv, buildPackages
|
|
|
|
, buildPlatform, hostPlatform
|
|
|
|
, fetchurl, makeWrapper, gawk, pkgconfig
|
|
|
|
, libffi, libtool, readline, gmp, boehmgc, libunistring
|
|
|
|
, coverageAnalysis ? null, gnu ? null
|
2017-06-27 00:06:36 +01:00
|
|
|
}:
|
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 {
|
2017-03-19 17:40:49 +00:00
|
|
|
name = "guile-${version}";
|
2018-01-13 19:51:20 +00:00
|
|
|
version = "2.2.3";
|
2009-11-22 22:16:58 +00:00
|
|
|
|
2008-02-20 09:02:00 +00:00
|
|
|
src = fetchurl {
|
2011-10-22 17:21:07 +01:00
|
|
|
url = "mirror://gnu/guile/${name}.tar.xz";
|
2018-01-13 19:51:20 +00:00
|
|
|
sha256 = "11j01agvnci2cx32wwpqs9078856yxmvs15gcsz7ganpkj2ahlw3";
|
2008-02-20 09:02:00 +00:00
|
|
|
};
|
2008-02-12 10:41:00 +00:00
|
|
|
|
2017-02-13 23:09:21 +00:00
|
|
|
outputs = [ "out" "dev" "info" ];
|
|
|
|
setOutputFlags = false; # $dev gets into the library otherwise
|
|
|
|
|
2018-03-05 23:45:16 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ]
|
|
|
|
++ stdenv.lib.optional (hostPlatform != buildPlatform)
|
|
|
|
buildPackages.buildPackages.guile;
|
|
|
|
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
|
|
|
|
2016-11-09 13:46:26 +00:00
|
|
|
propagatedBuildInputs = [ gmp boehmgc ]
|
2011-02-16 13:18:08 +00:00
|
|
|
# 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 09:06:12 +01:00
|
|
|
|
2016-11-09 13:46:26 +00:00
|
|
|
enableParallelBuilding = true;
|
2011-11-13 21:28:35 +00:00
|
|
|
|
2017-03-19 17:40:49 +00:00
|
|
|
patches = [
|
|
|
|
./eai_system.patch
|
2018-02-26 01:36:43 +00:00
|
|
|
./riscv.patch
|
2016-12-01 03:17:04 +00:00
|
|
|
] ++
|
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 14:40:33 +01: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 12:28:48 +01:00
|
|
|
|
|
|
|
# don't have "libgcc_s.so.1" on darwin
|
|
|
|
LDFLAGS = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s";
|
2012-09-24 14:40:33 +01:00
|
|
|
|
2017-03-19 17:40:49 +00:00
|
|
|
configureFlags = [ "--with-libreadline-prefix=${readline.dev}" ]
|
2017-02-13 22:01:46 +00:00
|
|
|
++ 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-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.
|
2017-03-19 17:40:49 +00:00
|
|
|
sed -i "$out/lib/pkgconfig/guile-2.2.pc" \
|
2017-02-14 10:19:47 +00:00
|
|
|
-e "s|-lunistring|-L${libunistring}/lib -lunistring|g ;
|
2011-02-16 13:18:08 +00:00
|
|
|
s|^Cflags:\(.*\)$|Cflags: -I${libunistring}/include \1|g ;
|
2017-02-14 10:19:47 +00:00
|
|
|
s|-lltdl|-L${libtool.lib}/lib -lltdl|g ;
|
|
|
|
s|includedir=$out|includedir=$dev|g
|
|
|
|
"
|
2008-06-16 15:27:26 +01:00
|
|
|
'';
|
|
|
|
|
2013-05-27 12:28:48 +01: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
|
|
|
|
2017-03-19 17:40:49 +00:00
|
|
|
setupHook = ./setup-hook-2.2.sh;
|
2008-02-20 09:02:00 +00:00
|
|
|
|
2012-05-09 14:42:46 +01:00
|
|
|
crossAttrs.preConfigure =
|
2017-06-27 00:06:36 +01:00
|
|
|
stdenv.lib.optionalString (hostPlatform.isHurd)
|
2012-05-09 14:42:46 +01:00
|
|
|
# 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 15:21:08 +01:00
|
|
|
description = "Embeddable Scheme implementation";
|
2013-05-27 12:28:48 +01:00
|
|
|
homepage = http://www.gnu.org/software/guile/;
|
|
|
|
license = stdenv.lib.licenses.lgpl3Plus;
|
2017-03-19 17:40:49 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ludo lovek323 vrthra ];
|
2013-05-27 12:28:48 +01:00
|
|
|
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 17:39:30 +01:00
|
|
|
})
|
|
|
|
|