2008-03-26 16:20:25 +01:00
|
|
|
{stdenv, fetchurl, guile, texinfo}:
|
2008-02-12 12:16:53 +01:00
|
|
|
|
2011-04-16 18:27:55 +02:00
|
|
|
assert stdenv ? gcc && stdenv.gcc ? gcc && stdenv.gcc.gcc != null;
|
|
|
|
|
2008-02-12 12:16:53 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2011-04-23 23:15:01 +02:00
|
|
|
name = "guile-lib-0.2.1";
|
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";
|
2011-04-23 23:15:01 +02:00
|
|
|
sha256 = "0ag18l7f9cpv4l577ln3f106xiggl7ndxhrqqiz7cg0w38s3cjvl";
|
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'.
|
|
|
|
'' export LD_LIBRARY_PATH="$(dirname $(echo ${stdenv.gcc.gcc}/lib*/libgcc_s.so)):$LD_LIBRARY_PATH"
|
|
|
|
'';
|
|
|
|
|
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/;
|
|
|
|
license = "GPLv3+";
|
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
2008-02-12 12:16:53 +01:00
|
|
|
};
|
|
|
|
}
|