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