Merge pull request #629 from lovek323/vim_configurable

vim_configurable: improvements
This commit is contained in:
Domen Kožar 2013-06-15 10:36:51 -07:00
commit 0d15be335c
2 changed files with 4 additions and 1 deletions

View file

@ -40,7 +40,8 @@ composableDerivation {
}.src;
};
configureFlags = ["--enable-gui=auto" "--with-features=${args.features}"];
configureFlags
= [ "--enable-gui=${args.gui}" "--with-features=${args.features}" ];
nativeBuildInputs
= [ ncurses pkgconfig gtk libX11 libXext libSM libXpm libXt libXaw libXau
@ -76,6 +77,7 @@ composableDerivation {
cfg = {
pythonSupport = config.vim.python or true;
rubySupport = config.vim.ruby or true;
nlsSupport = config.vim.nls or false;
tclSupport = config.vim.tcl or false;
multibyteSupport = config.vim.multibyte or false;

View file

@ -8273,6 +8273,7 @@ let
features = "huge"; # one of tiny, small, normal, big or huge
lua = pkgs.lua5;
gui = config.vim.gui or "auto";
# optional features by flags
flags = [ "python" "X11" ]; # only flag "X11" by now