vte: Add gtk3 as propagatedBuildInput

The `Vte.2.91.gir` imports `Gtk.3.0.gir`.  So in order to use
`Vte.2.91.gir`, you must also have `Gtk.3.0.gir` on the GI_TYPELIB_PATH.
Adding gtk3 to the `propagatedBuildInputs` of vte accomplishes this.
This commit is contained in:
(cdep)illabout 2018-08-09 11:54:17 +09:00
parent 122c5f9142
commit 8edc67c468
No known key found for this signature in database
GPG key ID: 462E0C03D11422F4

View file

@ -19,7 +19,12 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ gobjectIntrospection intltool pkgconfig vala gperf libxml2 ];
buildInputs = [ gnome3.glib gnome3.gtk3 ncurses ];
propagatedBuildInputs = [ gnutls pcre2 ];
propagatedBuildInputs = [
# Needed because Vte-2.91.gir depends on Gtk-3.0.gir
gnome3.gtk3
gnutls
pcre2
];
preConfigure = "patchShebangs .";