454707da23
svn path=/nixpkgs/trunk/; revision=3660
12 lines
259 B
Nix
12 lines
259 B
Nix
{stdenv, fetchurl, ncurses, readline}:
|
|
|
|
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";
|
|
};
|
|
|
|
buildInputs = [ncurses readline];
|
|
}
|