mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #20857 from Mic92/gajim
gajim: add enableOmemoPluginDependencies option
This commit is contained in:
commit
96e1220813
1 changed files with 4 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
|||
, enableRST ? true
|
||||
, enableSpelling ? true, gtkspell2 ? null
|
||||
, enableNotifications ? false
|
||||
, enableOmemoPluginDependencies ? false
|
||||
, extraPythonPackages ? pkgs: []
|
||||
}:
|
||||
|
||||
|
@ -68,7 +69,9 @@ stdenv.mkDerivation rec {
|
|||
] ++ optional enableE2E pythonPackages.pycrypto
|
||||
++ optional enableRST pythonPackages.docutils
|
||||
++ optional enableNotifications pythonPackages.notify
|
||||
++ extraPythonPackages pythonPackages;
|
||||
++ optionals enableOmemoPluginDependencies (with pythonPackages; [
|
||||
cryptography python-axolotl python-axolotl-curve25519 qrcode
|
||||
]) ++ extraPythonPackages pythonPackages;
|
||||
|
||||
postFixup = ''
|
||||
install -m 644 -t "$out/share/gajim/icons/hicolor" \
|
||||
|
|
Loading…
Reference in a new issue