gajim: Add dependency on libappindicator-gtk3
This is required by "Ayatana Appindicator integration" plugin which provides appindicator support to Gajim
This commit is contained in:
parent
5a82107589
commit
8eca45322c
1 changed files with 3 additions and 1 deletions
|
@ -15,6 +15,7 @@
|
|||
, enableSpelling ? true, gspell
|
||||
, enableUPnP ? true, gupnp-igd
|
||||
, enableOmemoPluginDependencies ? true
|
||||
, enableAppIndicator ? true, libappindicator-gtk3
|
||||
, extraPythonPackages ? ps: []
|
||||
}:
|
||||
|
||||
|
@ -33,7 +34,8 @@ python3.pkgs.buildPythonApplication rec {
|
|||
] ++ lib.optionals enableJingle [ farstream gstreamer gst-plugins-base gst-libav gst-plugins-good libnice ]
|
||||
++ lib.optional enableSecrets libsecret
|
||||
++ lib.optional enableSpelling gspell
|
||||
++ lib.optional enableUPnP gupnp-igd;
|
||||
++ lib.optional enableUPnP gupnp-igd
|
||||
++ lib.optional enableAppIndicator libappindicator-gtk3;
|
||||
|
||||
nativeBuildInputs = [
|
||||
gettext wrapGAppsHook
|
||||
|
|
Loading…
Reference in a new issue