mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
Merge pull request #132908 from wahjava/gajim-appindicator
gajim: Add dependency on libappindicator-gtk3
This commit is contained in:
commit
1e3330b7dd
@ -15,6 +15,7 @@
|
|||||||
, enableSpelling ? true, gspell
|
, enableSpelling ? true, gspell
|
||||||
, enableUPnP ? true, gupnp-igd
|
, enableUPnP ? true, gupnp-igd
|
||||||
, enableOmemoPluginDependencies ? true
|
, enableOmemoPluginDependencies ? true
|
||||||
|
, enableAppIndicator ? true, libappindicator-gtk3
|
||||||
, extraPythonPackages ? ps: []
|
, 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.optionals enableJingle [ farstream gstreamer gst-plugins-base gst-libav gst-plugins-good libnice ]
|
||||||
++ lib.optional enableSecrets libsecret
|
++ lib.optional enableSecrets libsecret
|
||||||
++ lib.optional enableSpelling gspell
|
++ lib.optional enableSpelling gspell
|
||||||
++ lib.optional enableUPnP gupnp-igd;
|
++ lib.optional enableUPnP gupnp-igd
|
||||||
|
++ lib.optional enableAppIndicator libappindicator-gtk3;
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
gettext wrapGAppsHook
|
gettext wrapGAppsHook
|
||||||
|
Loading…
Reference in New Issue
Block a user