From 92e525ed4ef0b43507cfcfe71ec0cec82d32df64 Mon Sep 17 00:00:00 2001 From: Will Dietz <w@wdtz.org> Date: Wed, 20 Dec 2017 14:04:12 -0600 Subject: [PATCH] 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. --- pkgs/desktops/gnome-3/core/vte/ng.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/desktops/gnome-3/core/vte/ng.nix b/pkgs/desktops/gnome-3/core/vte/ng.nix index 73bbba3e72bc..c40972e955fa 100644 --- a/pkgs/desktops/gnome-3/core/vte/ng.nix +++ b/pkgs/desktops/gnome-3/core/vte/ng.nix @@ -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 ];