2018-12-25 23:15:46 +00:00
|
|
|
{ vte, fetchFromGitHub, autoconf, automake, gtk-doc, gettext, libtool, gperf }:
|
2017-01-28 00:02:14 +00:00
|
|
|
|
2018-12-25 23:15:46 +00:00
|
|
|
vte.overrideAttrs (oldAttrs: rec {
|
2017-01-28 00:02:14 +00:00
|
|
|
name = "vte-ng-${version}";
|
2019-02-07 09:44:39 +00:00
|
|
|
version = "0.54.2.a";
|
2017-01-28 00:02:14 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "thestinger";
|
|
|
|
repo = "vte-ng";
|
|
|
|
rev = version;
|
2019-02-07 09:44:39 +00:00
|
|
|
sha256 = "1r7d9m07cpdr4f7rw3yx33hmp4jmsk0dn5byq5wgksb2qjbc4ags";
|
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
|
|
|
})
|