From a1555c022c26eb157133de634dba6a80a1cfef60 Mon Sep 17 00:00:00 2001 From: Benjamin Mellor Date: Fri, 26 Jan 2018 06:21:18 +0100 Subject: [PATCH] syncthing-gtk: explicitly depend on gobjectIntrospection --- pkgs/applications/networking/syncthing-gtk/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/syncthing-gtk/default.nix b/pkgs/applications/networking/syncthing-gtk/default.nix index a8fced65209..9760ed22025 100644 --- a/pkgs/applications/networking/syncthing-gtk/default.nix +++ b/pkgs/applications/networking/syncthing-gtk/default.nix @@ -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; })