nixpkgs-suyu/pkgs/desktops/gnome-3/core/vte/ng.nix
Will Dietz 92e525ed4e 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.
2017-12-20 22:19:16 +01:00

18 lines
540 B
Nix

{ gnome3, fetchFromGitHub, autoconf, automake, gtk_doc, gettext, libtool, gperf }:
gnome3.vte.overrideAttrs (oldAttrs: rec {
name = "vte-ng-${version}";
version = "0.50.2.a";
src = fetchFromGitHub {
owner = "thestinger";
repo = "vte-ng";
rev = version;
sha256 = "0i6hfzw9sq8521kz0l7lld2km56r0bfp1hw6kxq3j1msb8z8svcf";
};
preConfigure = oldAttrs.preConfigure + "; NOCONFIGURE=1 ./autogen.sh";
nativeBuildInputs = oldAttrs.nativeBuildInputs or []
++ [ gtk_doc autoconf automake gettext libtool gperf ];
})