summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2018-03-25 23:37:38 +0200
committeraszlig <aszlig@nix.build>2018-03-25 23:41:21 +0200
commita0c525bd0a93fba70471392b8651882b52197788 (patch)
treec08ded8e9e0cddce1d370c4037da04f2e116e883 /pkgs
parentadb58440e687440ecf70d2571d8bba8d215dea6a (diff)
downloadnixpkgs-a0c525bd0a93fba70471392b8651882b52197788.tar
nixpkgs-a0c525bd0a93fba70471392b8651882b52197788.tar.gz
nixpkgs-a0c525bd0a93fba70471392b8651882b52197788.tar.bz2
nixpkgs-a0c525bd0a93fba70471392b8651882b52197788.tar.lz
nixpkgs-a0c525bd0a93fba70471392b8651882b52197788.tar.xz
nixpkgs-a0c525bd0a93fba70471392b8651882b52197788.tar.zst
nixpkgs-a0c525bd0a93fba70471392b8651882b52197788.zip
gajim: Add gnome3.defaultIconTheme to buildInputs
This is for systems that are not using a full desktop environment, so
Gajim can fall back to the default icon theme of Gnome 3.

Among just fixing aesthetics this also fixes a few exceptions that were
triggered by Gajim not finding the icons. One example of this is when
you enter the plugins dialog, the window is empty if the icons can't be
found.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @abbradar, @Mic92, @7c6f434c
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/instant-messengers/gajim/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/instant-messengers/gajim/default.nix b/pkgs/applications/networking/instant-messengers/gajim/default.nix
index 5a9f545bb0a..4b0533cefb4 100644
--- a/pkgs/applications/networking/instant-messengers/gajim/default.nix
+++ b/pkgs/applications/networking/instant-messengers/gajim/default.nix
@@ -1,6 +1,6 @@
 { buildPythonApplication, lib, fetchurl, gettext, wrapGAppsHook
 , python, gtk3, gobjectIntrospection
-, nbxmpp, pyasn1, pygobject3, dbus-python, pillow
+, nbxmpp, pyasn1, pygobject3, gnome3, dbus-python, pillow
 , xvfb_run, dbus
 , enableJingle ? true, farstream, gstreamer, gst-plugins-base, gst-libav, gst-plugins-ugly
 , enableE2E ? true, pycrypto, python-gnupg
@@ -30,7 +30,7 @@ buildPythonApplication rec {
   '';
 
   buildInputs = [
-    gobjectIntrospection gtk3
+    gobjectIntrospection gtk3 gnome3.defaultIconTheme
   ] ++ optionals enableJingle [ farstream gstreamer gst-plugins-base gst-libav gst-plugins-ugly ]
     ++ optional enableSecrets libsecret
     ++ optional enableSpelling gspell