about summary refs log tree commit diff
path: root/pkgs/development/interpreters/guile/default.nix
blob: b4a28f73a4a07ac1f736029b76c47eafb323ef6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, ncurses, readline}:

stdenv.mkDerivation {
  name = "guile-1.6.7";
  src = fetchurl {
    url = http://ftp.gnu.org/pub/gnu/guile/guile-1.6.7.tar.gz;
    md5 = "c2ff2a2231f0cbb2e838dd8701a587c5";
  };

  buildInputs = [ncurses readline];
}