2005-02-25 23:22:40 +01:00
|
|
|
{stdenv, fetchurl, ncurses, readline}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "guile-1.6.7";
|
|
|
|
src = fetchurl {
|
2005-08-22 10:39:27 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/guile-1.6.7.tar.gz;
|
2005-02-25 23:22:40 +01:00
|
|
|
md5 = "c2ff2a2231f0cbb2e838dd8701a587c5";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ncurses readline];
|
|
|
|
}
|