Guile-Lib 0.1.9.
svn path=/nixpkgs/trunk/; revision=23650
This commit is contained in:
parent
1ecee338e8
commit
895ba33eb4
@ -1,31 +1,23 @@
|
|||||||
{stdenv, fetchurl, guile, texinfo}:
|
{stdenv, fetchurl, guile, texinfo}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "guile-lib-0.1.6";
|
name = "guile-lib-0.1.9";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://download.gna.org/guile-lib/" + name + ".tar.gz";
|
url = "mirror://savannah/guile-lib/${name}.tar.gz";
|
||||||
sha256 = "827744c7954078f1f37e0bf70252ec70b4d60c1482a3542a49bd09723cf65d12";
|
sha256 = "13sc2x9x0rmfgfa69wabyhajc70yiywih9ibszjmkhxcm2zx0gan";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [guile texinfo];
|
buildInputs = [guile texinfo];
|
||||||
|
|
||||||
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
|
|
||||||
'';
|
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Guile-Library, a collection of useful Guile Scheme modules";
|
description = "Guile-Library, a collection of useful Guile Scheme modules";
|
||||||
homepage = http://home.gna.org/guile-lib/;
|
homepage = http://www.nongnu.org/guile-lib/;
|
||||||
license = "GPL";
|
license = "GPLv3+";
|
||||||
|
|
||||||
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||||
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -2210,7 +2210,7 @@ let
|
|||||||
libgnomeui pango;
|
libgnomeui pango;
|
||||||
};
|
};
|
||||||
|
|
||||||
guileLib = callPackage ../development/guile-modules/guile-lib { };
|
guile_lib = callPackage ../development/guile-modules/guile-lib { };
|
||||||
|
|
||||||
windowssdk = (
|
windowssdk = (
|
||||||
import ../development/misc/windows-sdk {
|
import ../development/misc/windows-sdk {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user