gajim: add enableOmemoPluginDependencies option
This commit is contained in:
parent
56366b5e66
commit
8c9582ca67
@ -7,6 +7,7 @@
|
|||||||
, enableRST ? true
|
, enableRST ? true
|
||||||
, enableSpelling ? true, gtkspell2 ? null
|
, enableSpelling ? true, gtkspell2 ? null
|
||||||
, enableNotifications ? false
|
, enableNotifications ? false
|
||||||
|
, enableOmemoPluginDependencies ? false
|
||||||
, extraPythonPackages ? pkgs: []
|
, extraPythonPackages ? pkgs: []
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -68,7 +69,9 @@ stdenv.mkDerivation rec {
|
|||||||
] ++ optional enableE2E pythonPackages.pycrypto
|
] ++ optional enableE2E pythonPackages.pycrypto
|
||||||
++ optional enableRST pythonPackages.docutils
|
++ optional enableRST pythonPackages.docutils
|
||||||
++ optional enableNotifications pythonPackages.notify
|
++ optional enableNotifications pythonPackages.notify
|
||||||
++ extraPythonPackages pythonPackages;
|
++ optionals enableOmemoPluginDependencies (with pythonPackages; [
|
||||||
|
cryptography python-axolotl python-axolotl-curve25519 qrcode
|
||||||
|
]) ++ extraPythonPackages pythonPackages;
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
install -m 644 -t "$out/share/gajim/icons/hicolor" \
|
install -m 644 -t "$out/share/gajim/icons/hicolor" \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user