summary refs log tree commit diff
path: root/pkgs/applications/editors/vim/default.nix
blob: c0c8b61125b92d05df10ac4094d6a4d934a4f099 (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 = ftp://ftp.vim.org/mirror/vim/unix/vim-6.3.tar.bz2;
    md5 = "821fda8f14d674346b87e3ef9cb96389";
  };
 
  inherit ncurses;
  buildInputs = [ncurses];
}