summary refs log tree commit diff
path: root/pkgs/applications/editors/vim-diet/default.nix
blob: 5c6991b895ce362200e9549f6359d6b7521743fb (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 = 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";
}