Make configurable Vim build with most options

svn path=/nixpkgs/trunk/; revision=22924
This commit is contained in:
Michael Raskin
2010-08-03 10:59:57 +00:00
parent 6cffff9de1
commit e8a33e0c82
2 changed files with 11 additions and 7 deletions

View File

@@ -6155,9 +6155,9 @@ let
vimHugeX = vim_configurable;
vim_configurable = import ../applications/editors/vim/configurable.nix {
inherit fetchurl stdenv ncurses pkgconfig composableDerivation lib;
inherit fetchurl stdenv ncurses pkgconfig gettext composableDerivation lib;
inherit (xlibs) libX11 libXext libSM libXpm
libXt libXaw libXau libXmu;
libXt libXaw libXau libXmu libICE;
inherit (gtkLibs) glib gtk;
features = "huge"; # one of tiny, small, normal, big or huge
# optional features by passing
@@ -6165,6 +6165,8 @@ let
# TODO mzschemeinterp perlinterp
inherit python perl tcl ruby /*x11*/;
lua = lua5;
# optional features by flags
flags = [ "X11" ]; # only flag "X11" by now
};