nixpkgs/pkgs/applications/editors/nano/default.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

12 lines
290 B
Nix

{stdenv, fetchurl, ncurses, gettext}:
stdenv.mkDerivation {
name = "nano-1.2.5";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/nano-1.2.5.tar.gz;
md5 = "f2b3efbf1cf356d736740d531b6b22c4";
};
buildInputs = [ncurses gettext];
configureFlags = "--enable-tiny";
}