Add Guile-Lib, a collection of useful GNU Guile modules.

svn path=/nixpkgs/trunk/; revision=10639
This commit is contained in:
Ludovic Courtès 2008-02-12 11:16:53 +00:00
parent c81efcdedb
commit e2b794b807
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{stdenv, fetchurl, guile}:
stdenv.mkDerivation rec {
name = "guile-lib-0.1.6";
src = fetchurl {
url = "http://download.gna.org/guile-lib/" + name + ".tar.gz";
sha256 = "827744c7954078f1f37e0bf70252ec70b4d60c1482a3542a49bd09723cf65d12";
};
buildInputs = [guile];
postInstall = ''
# Remove modules already provided by Guile.
if "${guile}/bin/guile" -c '(use-modules (srfi srfi-34))'
then
rm -f "$out/share/guile/site/srfi/srfi-34.scm"
fi
if "${guile}/bin/guile" -c '(use-modules (srfi srfi-35))'
then
rm -f "$out/share/guile/site/srfi/srfi-35.scm"
fi
# Make modules available under `/lib/site-guile' to comply with Guile's
# setup-hook.
mkdir -p "$out/lib/site-guile"
for f in "$out/share/guile/site"/*
do
ln -s "$f" "$out/lib/site-guile/"
done
'';
meta = {
description = ''Guile-Library, a set of various useful
Guile Scheme modules.'';
homepage = http://home.gna.org/guile-lib/;
license = "GPL";
};
}

View file

@ -1659,6 +1659,10 @@ rec {
inherit fetchurl stdenv unzip;
};
guileLib = import ../development/guile-modules/guile-lib {
inherit fetchurl stdenv guile;
};
windowssdk = import ../development/misc/windows-sdk {
inherit fetchurl stdenv cabextract;
};