ad897a7c96
svn path=/nixpkgs/trunk/; revision=6713
16 lines
297 B
Nix
16 lines
297 B
Nix
{stdenv, fetchurl, ncurses}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "vim-7.0";
|
|
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/vim-7.0.tar.bz2;
|
|
md5 = "4ca69757678272f718b1041c810d82d8";
|
|
};
|
|
|
|
inherit ncurses;
|
|
buildInputs = [ncurses];
|
|
|
|
NIX_CFLAGS_COMPILE="-D_BSD_SOURCE=1";
|
|
}
|