3
0
Fork 0
forked from mirrors/nixpkgs

syncthing-gtk: explicitly depend on gobjectIntrospection

This commit is contained in:
Benjamin Mellor 2018-01-26 06:21:18 +01:00 committed by Jan Tojnar
parent 33bfe21e6d
commit a1555c022c
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, libnotify, librsvg, psmisc, gtk3, substituteAll, syncthing, wrapGAppsHook, gnome3, python2Packages }:
{ stdenv, fetchFromGitHub, libnotify, librsvg, psmisc, gtk3, substituteAll, syncthing, wrapGAppsHook, gnome3, python2Packages, gobjectIntrospection }:
python2Packages.buildPythonApplication rec {
version = "0.9.2.7";
@ -11,7 +11,11 @@ python2Packages.buildPythonApplication rec {
sha256 = "08k7vkibia85klwjxbnzk67h4pphrizka5v9zxwvvv3cisjiclc2";
};
nativeBuildInputs = [ wrapGAppsHook ];
nativeBuildInputs = [
wrapGAppsHook
# For setup hook populating GI_TYPELIB_PATH
gobjectIntrospection
];
buildInputs = [
gtk3 (librsvg.override { enableIntrospection = true; })