From 387478ce5eaad71c8be8f387742c6a8557d3b29c Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Thu, 12 Feb 2009 20:27:56 +0000 Subject: [PATCH] vim_configurable: build with gtk, fix passing features=huge using gtk gvim does start much faster svn path=/nixpkgs/trunk/; revision=14053 --- pkgs/applications/editors/vim/configurable.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vim/configurable.nix b/pkgs/applications/editors/vim/configurable.nix index abe1a403e76..b958eb6b812 100644 --- a/pkgs/applications/editors/vim/configurable.nix +++ b/pkgs/applications/editors/vim/configurable.nix @@ -12,10 +12,10 @@ composableDerivation { sha256 = "11hxkb6r2550c4n13nwr0d8afvh30qjyr5c2hw16zgay43rb0kci"; }; - cfgOption = "--enable-gui=auto --with-features=${args.features}"; + configureFlags = ["--enable-gui=auto" "--with-features=${args.features}"]; buildInputs = [ncurses pkgconfig] - ++ [ libX11 libXext libSM libXpm libXt libXaw libXau libXmu ]; + ++ [ gtk libX11 libXext libSM libXpm libXt libXaw libXau libXmu ]; # most interpreters aren't tested yet.. (see python for example how to do it) flags = {}