about summary refs log tree commit diff
path: root/pkgs/applications/editors/vim/default.nix
blob: 0eace652a74b206d39d15d0d7375f728fd2f2695 (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://catamaran.labs.cs.uu.nl/dist/tarballs/vim-6.3.tar.bz2;
    md5 = "821fda8f14d674346b87e3ef9cb96389";
  };
 
  inherit ncurses;
  buildInputs = [ncurses];
}