1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

Now Guile works

svn path=/nixpkgs/trunk/; revision=9394
This commit is contained in:
Michael Raskin 2007-10-02 20:48:39 +00:00
parent 1bfaf17b14
commit 2d9f1f42b6
2 changed files with 6 additions and 7 deletions

View file

@ -1,11 +1,10 @@
{stdenv, fetchurl, ncurses, readline}:
args: with args;
stdenv.mkDerivation {
name = "guile-1.6.7";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/guile-1.6.7.tar.gz;
md5 = "c2ff2a2231f0cbb2e838dd8701a587c5";
};
url = ftp://ftp.gnu.org/gnu/guile/guile-1.8.2.tar.gz;
sha256 = "03kn1ia4s7l24zl2sfbrns6fs3nc9cw2pzsqx8y7wwr80b1nfxhz";
};
buildInputs = [ncurses readline];
buildInputs = [ncurses readline libtool gmp];
}

View file

@ -1051,7 +1051,7 @@ rec {
};
guile = import ../development/interpreters/guile {
inherit fetchurl stdenv ncurses readline;
inherit fetchurl stdenv ncurses readline libtool gmp;
};
kaffe = import ../development/interpreters/kaffe {