4bfffeee52
svn path=/nixpkgs/trunk/; revision=6197
11 lines
253 B
Nix
11 lines
253 B
Nix
{ stdenv, fetchurl, ncurses }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "readline-4.3";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/readline-4.3.tar.gz;
|
|
md5 = "f86f7cb717ab321fe15f1bbcb058c11e";
|
|
};
|
|
propagatedBuildInputs = [ncurses];
|
|
}
|