summary refs log tree commit diff
path: root/pkgs/applications/editors/vim-diet/default.nix
blob: 76c022896fe964a65f6a2f040f483772d3a12ae8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{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";
}