2008-03-13 15:18:29 +01:00
|
|
|
{ fetchurl, stdenv, libtool, readline, gmp
|
|
|
|
, gawk, makeWrapper }:
|
2005-02-25 23:22:40 +01:00
|
|
|
|
2008-02-20 10:02:00 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "guile-1.8.4";
|
|
|
|
src = fetchurl {
|
2008-03-19 09:42:30 +01:00
|
|
|
url = "mirror://gnu/guile/" + name + ".tar.gz";
|
2008-02-20 10:02:00 +01:00
|
|
|
sha256 = "1cz1d4n6vzw0lfsvplsiarwqk675f12j596dzfv0h5r9cljpc0ya";
|
|
|
|
};
|
2008-02-12 11:41:00 +01:00
|
|
|
|
2008-03-19 09:42:30 +01:00
|
|
|
patches = [ ./test-tmpdir.patch
|
|
|
|
./srcprop-no-deadlock.patch
|
|
|
|
./popen-zombie.patch ];
|
2008-03-13 15:18:29 +01:00
|
|
|
|
2008-02-12 11:41:00 +01:00
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
propagatedBuildInputs = [readline libtool gmp gawk];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/guile-snarf --prefix PATH : "${gawk}/bin"
|
|
|
|
'';
|
|
|
|
|
2008-03-19 09:42:30 +01:00
|
|
|
doCheck = true;
|
2008-03-13 15:18:29 +01:00
|
|
|
|
2008-02-12 11:41:00 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
2008-02-20 10:02:00 +01:00
|
|
|
|
|
|
|
meta = {
|
2008-03-20 15:35:03 +01:00
|
|
|
description = "GNU Guile, an embeddable Scheme interpreter";
|
|
|
|
longDescription = ''
|
|
|
|
GNU Guile is an interpreter for the Scheme programming language,
|
|
|
|
packaged as a library that can be embedded into programs to make
|
|
|
|
them extensible. It supports many SRFIs.
|
|
|
|
'';
|
|
|
|
|
2008-02-20 10:02:00 +01:00
|
|
|
homepage = http://www.gnu.org/software/guile/;
|
|
|
|
license = "LGPL";
|
|
|
|
};
|
2005-02-25 23:22:40 +01:00
|
|
|
}
|