81aac8d84d
svn path=/nixpkgs/trunk/; revision=10417
20 lines
346 B
Nix
20 lines
346 B
Nix
{stdenv, fetchurl, ncurses}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "vim-7.0";
|
|
|
|
src = fetchurl {
|
|
url = ftp://ftp.vim.org/pub/vim/unix/vim-7.0.tar.bz2;
|
|
md5 = "4ca69757678272f718b1041c810d82d8";
|
|
};
|
|
|
|
inherit ncurses;
|
|
buildInputs = [ncurses];
|
|
|
|
NIX_CFLAGS_COMPILE="-D_BSD_SOURCE=1";
|
|
|
|
meta = {
|
|
homepage = http://www.vim.org;
|
|
};
|
|
}
|