mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
add vim
svn path=/nixpkgs/trunk/; revision=1200
This commit is contained in:
parent
b63ec4b441
commit
5d1cf55dc1
3
pkgs/applications/editors/vim/builder.sh
Normal file
3
pkgs/applications/editors/vim/builder.sh
Normal file
@ -0,0 +1,3 @@
|
||||
. $stdenv/setup
|
||||
|
||||
genericBuild
|
14
pkgs/applications/editors/vim/default.nix
Normal file
14
pkgs/applications/editors/vim/default.nix
Normal 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];
|
||||
}
|
@ -646,6 +646,9 @@ rec {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
vim = (import ../applications/editors/vim) {
|
||||
inherit fetchurl stdenv ncurses;
|
||||
};
|
||||
|
||||
### GAMES
|
||||
|
||||
|
@ -59,6 +59,7 @@ let {
|
||||
nix
|
||||
ocaml
|
||||
hevea
|
||||
vim
|
||||
;};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user