2008-03-26 16:20:25 +01:00
|
|
|
{stdenv, fetchurl, guile, texinfo}:
|
2008-02-12 12:16:53 +01:00
|
|
|
|
2015-01-15 05:25:26 +01:00
|
|
|
assert stdenv ? cc && stdenv.cc.cc.isGNU or false;
|
2011-04-16 18:27:55 +02:00
|
|
|
|
2008-02-12 12:16:53 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-16 00:24:12 +01:00
|
|
|
name = "guile-lib-0.2.2";
|
2010-09-05 17:19:23 +02:00
|
|
|
|
2008-02-12 12:16:53 +01:00
|
|
|
src = fetchurl {
|
2010-09-05 17:19:23 +02:00
|
|
|
url = "mirror://savannah/guile-lib/${name}.tar.gz";
|
2013-12-16 00:24:12 +01:00
|
|
|
sha256 = "1f9n2b5b5r75lzjinyk6zp6g20g60msa0jpfrk5hhg4j8cy0ih4b";
|
2008-02-12 12:16:53 +01:00
|
|
|
};
|
|
|
|
|
2008-03-26 16:20:25 +01:00
|
|
|
buildInputs = [guile texinfo];
|
2008-02-12 12:16:53 +01:00
|
|
|
|
2008-03-26 16:20:25 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2011-03-28 14:05:17 +02:00
|
|
|
preCheck =
|
|
|
|
# Make `libgcc_s.so' visible for `pthread_cancel'.
|
2015-01-15 05:25:26 +01:00
|
|
|
'' export LD_LIBRARY_PATH="$(dirname $(echo ${stdenv.cc.cc}/lib*/libgcc_s.so)):$LD_LIBRARY_PATH"
|
2011-03-28 14:05:17 +02:00
|
|
|
'';
|
|
|
|
|
2008-02-12 12:16:53 +01:00
|
|
|
meta = {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "Guile-Library, a collection of useful Guile Scheme modules";
|
2011-04-23 23:15:01 +02:00
|
|
|
|
|
|
|
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".
|
|
|
|
'';
|
|
|
|
|
2010-09-05 17:19:23 +02:00
|
|
|
homepage = http://www.nongnu.org/guile-lib/;
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2010-09-05 17:19:23 +02:00
|
|
|
|
2015-01-13 22:33:24 +01:00
|
|
|
maintainers = [ ];
|
2010-09-05 17:19:23 +02:00
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
2008-02-12 12:16:53 +01:00
|
|
|
};
|
|
|
|
}
|