2018-02-24 18:23:58 -08:00
|
|
|
{ gnome3, fetchFromGitHub, autoconf, automake, gtk-doc, gettext, libtool, gperf }:
|
2017-01-27 16:02:14 -08:00
|
|
|
|
|
|
|
gnome3.vte.overrideAttrs (oldAttrs: rec {
|
|
|
|
name = "vte-ng-${version}";
|
2017-11-09 00:24:43 -08:00
|
|
|
version = "0.50.2.a";
|
2017-01-27 16:02:14 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "thestinger";
|
|
|
|
repo = "vte-ng";
|
|
|
|
rev = version;
|
2017-11-09 00:24:43 -08:00
|
|
|
sha256 = "0i6hfzw9sq8521kz0l7lld2km56r0bfp1hw6kxq3j1msb8z8svcf";
|
2017-01-27 16:02:14 -08:00
|
|
|
};
|
|
|
|
|
2017-12-20 12:04:12 -08:00
|
|
|
preConfigure = oldAttrs.preConfigure + "; NOCONFIGURE=1 ./autogen.sh";
|
2017-01-27 16:02:14 -08:00
|
|
|
|
2017-10-07 02:14:22 -07:00
|
|
|
nativeBuildInputs = oldAttrs.nativeBuildInputs or []
|
2018-02-24 18:23:58 -08:00
|
|
|
++ [ gtk-doc autoconf automake gettext libtool gperf ];
|
2017-01-27 16:02:14 -08:00
|
|
|
})
|