nixpkgs/pkgs/applications/editors/vim/default.nix
Eelco Dolstra 368c196a62 * More descriptions.
svn path=/nixpkgs/trunk/; revision=6709
2006-10-12 10:53:16 +00:00

19 lines
357 B
Nix

{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "vim-7.0";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.vim.org/pub/vim/unix/vim-7.0.tar.bz2;
md5 = "4ca69757678272f718b1041c810d82d8";
};
inherit ncurses;
buildInputs = [ncurses];
meta = {
description = "The most popular clone of the VI editor";
};
}