nixpkgs/pkgs/applications/editors/vim/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

19 lines
360 B
Nix

{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "vim-7.0";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/vim-7.0.tar.bz2;
md5 = "4ca69757678272f718b1041c810d82d8";
};
inherit ncurses;
buildInputs = [ncurses];
meta = {
description = "The most popular clone of the VI editor";
};
}