Make Vim expression overridable

svn path=/nixpkgs/trunk/; revision=20201
This commit is contained in:
Michael Raskin 2010-02-23 18:29:11 +00:00
parent 9df96554ec
commit f90ab6394b

View File

@ -8113,12 +8113,12 @@ let
makeWrapper graphviz which python; makeWrapper graphviz which python;
}; };
vim = import ../applications/editors/vim { vim = makeOverridable (import ../applications/editors/vim) {
inherit fetchurl stdenv ncurses lib; inherit fetchurl stdenv ncurses lib;
}; };
vimHugeX = import ../applications/editors/vim { vimHugeX = vim.override {
inherit fetchurl stdenv lib ncurses pkgconfig inherit pkgconfig
perl python tcl; perl python tcl;
inherit (xlibs) libX11 libXext libSM libXpm inherit (xlibs) libX11 libXext libSM libXpm
libXt libXaw libXau; libXt libXaw libXau;