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:
parent
122c5f9142
commit
8edc67c468
@ -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 .";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user