vte-ng: don't run configure as part of autogen, since it runs w/o args

We could alternatively pass arguments here as well,
but there seems little point in running configure twice.
This commit is contained in:
Will Dietz 2017-12-20 14:04:12 -06:00 committed by Jan Tojnar
parent 9cee2e5c95
commit 92e525ed4e

View File

@ -11,7 +11,7 @@ gnome3.vte.overrideAttrs (oldAttrs: rec {
sha256 = "0i6hfzw9sq8521kz0l7lld2km56r0bfp1hw6kxq3j1msb8z8svcf";
};
preConfigure = oldAttrs.preConfigure + "; ./autogen.sh";
preConfigure = oldAttrs.preConfigure + "; NOCONFIGURE=1 ./autogen.sh";
nativeBuildInputs = oldAttrs.nativeBuildInputs or []
++ [ gtk_doc autoconf automake gettext libtool gperf ];