summary refs log tree commit diff
path: root/pkgs/applications/editors/vim/default.nix
blob: 23b1831e1f392dc702338483719f18de06cbae36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl, ncurses}:
 
stdenv.mkDerivation {
  name = "vim-6.3";
 
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/vim-6.3.tar.bz2;
    md5 = "821fda8f14d674346b87e3ef9cb96389";
  };
 
  inherit ncurses;
  buildInputs = [ncurses];
}