nixpkgs/pkgs/development/libraries/readline/readline5.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

11 lines
253 B
Nix

{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation {
name = "readline-5.1";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/readline-5.1.tar.gz;
md5 = "7ee5a692db88b30ca48927a13fd60e46";
};
propagatedBuildInputs = [ncurses];
}