a0159dee8e
URLs to http://nix.cs.uu.nl/dist/tarballs. With content-addressable mirror support (r9190, NIXPKGS-70) this is no longer necessary: fetchurl will try to download from that location automatically. So we can keep the original URLs. svn path=/nixpkgs/trunk/; revision=9192
16 lines
294 B
Nix
16 lines
294 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";
|
|
}
|