nixpkgs/pkgs/development/libraries/readline/readline4.nix
Eelco Dolstra 33ddaafc57 * Add readline 4 (in addition to readline 5).
svn path=/nixpkgs/trunk/; revision=3990
2005-10-02 14:54:58 +00:00

12 lines
264 B
Nix

{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation {
name = "readline-4.3";
src = fetchurl {
url = http://ftp.gnu.org/pub/gnu/readline/readline-4.3.tar.gz;
md5 = "f86f7cb717ab321fe15f1bbcb058c11e";
};
inherit ncurses;
buildInputs = [ncurses];
}