mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
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
This commit is contained in:
parent
adb58440e6
commit
a0c525bd0a
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue