2017-09-24 12:03:56 +01:00
|
|
|
{ stdenv, fetchurl, guile, texinfo, pkgconfig }:
|
2008-02-12 11:16:53 +00:00
|
|
|
|
2015-05-11 22:37:53 +01:00
|
|
|
assert stdenv ? cc && stdenv.cc.isGNU;
|
2011-04-16 17:27:55 +01:00
|
|
|
|
2017-09-24 12:03:56 +01:00
|
|
|
let
|
|
|
|
name = "guile-lib-${version}";
|
|
|
|
version = "0.2.2";
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
inherit name;
|
2010-09-05 16:19:23 +01:00
|
|
|
|
2008-02-12 11:16:53 +00:00
|
|
|
src = fetchurl {
|
2010-09-05 16:19:23 +01:00
|
|
|
url = "mirror://savannah/guile-lib/${name}.tar.gz";
|
2013-12-15 23:24:12 +00:00
|
|
|
sha256 = "1f9n2b5b5r75lzjinyk6zp6g20g60msa0jpfrk5hhg4j8cy0ih4b";
|
2008-02-12 11:16:53 +00:00
|
|
|
};
|
|
|
|
|
2017-09-24 12:03:56 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ guile texinfo ];
|
2008-02-12 11:16:53 +00:00
|
|
|
|
2017-09-24 12:03:56 +01:00
|
|
|
# One test doesn't seem to be compatible with guile_2_2.
|
2017-09-24 09:47:16 +01:00
|
|
|
patchPhase = ''
|
|
|
|
sed -i -e '/sxml.ssax.scm/d' unit-tests/Makefile*
|
|
|
|
'';
|
|
|
|
|
2008-03-26 15:20:25 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2017-09-24 12:03:56 +01:00
|
|
|
preCheck = ''
|
2011-03-28 13:05:17 +01:00
|
|
|
# Make `libgcc_s.so' visible for `pthread_cancel'.
|
2017-09-24 12:03:56 +01:00
|
|
|
export LD_LIBRARY_PATH=\
|
|
|
|
"$(dirname $(echo ${stdenv.cc.cc.lib}/lib*/libgcc_s.so)):$LD_LIBRARY_PATH"
|
|
|
|
'';
|
2010-09-05 16:19:23 +01:00
|
|
|
|
2017-09-24 12:03:56 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A collection of useful Guile Scheme modules";
|
|
|
|
longDescription = ''
|
|
|
|
guile-lib is intended as an accumulation place for pure-scheme Guile
|
|
|
|
modules, allowing for people to cooperate integrating their generic Guile
|
|
|
|
modules into a coherent library. Think "a down-scaled, limited-scope CPAN
|
|
|
|
for Guile".
|
|
|
|
'';
|
|
|
|
homepage = "http://www.nongnu.org/guile-lib/";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ vyp ];
|
2018-04-30 23:43:54 +01:00
|
|
|
platforms = platforms.gnu ++ platforms.linux;
|
2008-02-12 11:16:53 +00:00
|
|
|
};
|
|
|
|
}
|