1442e8ec22
svn path=/nixpkgs/trunk/; revision=6711
19 lines
360 B
Nix
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";
|
|
};
|
|
}
|