nixpkgs/pkgs/development/libraries/readline/readline5.nix
Armijn Hemel 7e41b751cb new versions of various very important tools to keep the buildfarm busy.
svn path=/nixpkgs/trunk/; revision=7485
2006-12-25 23:28:35 +00:00

11 lines
255 B
Nix

{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation {
name = "readline-5.2";
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/readline/readline-5.2.tar.gz;
md5 = "e39331f32ad14009b9ff49cc10c5e751";
};
propagatedBuildInputs = [ncurses];
}