mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Add Guile-Lib, a collection of useful GNU Guile modules.
svn path=/nixpkgs/trunk/; revision=10639
This commit is contained in:
parent
c81efcdedb
commit
e2b794b807
2 changed files with 42 additions and 0 deletions
38
pkgs/development/guile-modules/guile-lib/default.nix
Normal file
38
pkgs/development/guile-modules/guile-lib/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue