From 525e15efaec83aa7cbb8a9c27b01e029b87cb2dd Mon Sep 17 00:00:00 2001 From: Ash Date: Fri, 30 Oct 2020 05:04:28 -0700 Subject: [PATCH] gajim: strictDeps = false (#102141) * gajim: strictDeps = false Without this it doesn't find GSettings schemas, which causes it to crash when (for example) you try to change your avatar. --- .../networking/instant-messengers/gajim/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/networking/instant-messengers/gajim/default.nix b/pkgs/applications/networking/instant-messengers/gajim/default.nix index 2ee017dfdba..eef24f75f15 100644 --- a/pkgs/applications/networking/instant-messengers/gajim/default.nix +++ b/pkgs/applications/networking/instant-messengers/gajim/default.nix @@ -60,6 +60,9 @@ python3.pkgs.buildPythonApplication rec { ${python3.interpreter} setup.py test ''; + # necessary for wrapGAppsHook + strictDeps = false; + meta = { homepage = "http://gajim.org/"; description = "Jabber client written in PyGTK";