2005-10-02 07:54:58 -07:00
|
|
|
{ stdenv, fetchurl, ncurses }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "readline-4.3";
|
|
|
|
src = fetchurl {
|
2006-01-30 08:04:03 -08:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/readline-4.3.tar.gz;
|
2005-10-02 07:54:58 -07:00
|
|
|
md5 = "f86f7cb717ab321fe15f1bbcb058c11e";
|
|
|
|
};
|
|
|
|
inherit ncurses;
|
|
|
|
buildInputs = [ncurses];
|
|
|
|
}
|