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