mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03: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;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vim = (import ../applications/editors/vim) {
|
||||||
|
inherit fetchurl stdenv ncurses;
|
||||||
|
};
|
||||||
|
|
||||||
### GAMES
|
### GAMES
|
||||||
|
|
||||||
|
@ -59,6 +59,7 @@ let {
|
|||||||
nix
|
nix
|
||||||
ocaml
|
ocaml
|
||||||
hevea
|
hevea
|
||||||
|
vim
|
||||||
;};
|
;};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user