svn path=/nixpkgs/trunk/; revision=1200
This commit is contained in:
Armijn Hemel
2004-07-30 12:57:27 +00:00
parent b63ec4b441
commit 5d1cf55dc1
4 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
. $stdenv/setup
genericBuild

View File

@@ -0,0 +1,14 @@
{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "vim-6.3.tar.bz2";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.vim.org/mirror/vim/unix/vim-6.3.tar.bz2;
md5 = "821fda8f14d674346b87e3ef9cb96389";
};
inherit ncurses;
buildInputs = [ncurses];
}