diff options
author | Morgan Smith <Morgan.J.Smith@outlook.com> | 2024-11-23 17:58:54 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-11-25 11:40:55 +0100 |
commit | 5164308d5262922ab506d6e1e7722749360e3aef (patch) | |
tree | 5b888f91062e7cc5e7b41f4d72f737e13eb22bc4 | |
parent | 6f2419de320d91dcdcc09a80b046dba4fe656c8d (diff) | |
download | guix-5164308d5262922ab506d6e1e7722749360e3aef.tar.gz guix-5164308d5262922ab506d6e1e7722749360e3aef.zip |
gnu: Deprecate gajim-omemo.
This plugin is no longer needed. The functionality is build into gajim now.
* gnu/packages/messaging.scm (gajim-omemo): Deprecate package.
Change-Id: Ib2e76eab9ace8486396f6dab590b830866693d87
Co-authored-by: Luca Matei Pintilie <luca@lucamatei.com>
Signed-off-by: Luca Matei Pintilie <luca@lucamatei.com>
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/messaging.scm | 35 |
1 files changed, 1 insertions, 34 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 762381fe0e..a70bb8152e 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -1343,40 +1343,7 @@ and OpenPGP) and available in 29 languages.") (license license:gpl3))) (define-public gajim-omemo - (package - (name "gajim-omemo") - (version "2.9.0") - (source - (origin - (method url-fetch/zipbomb) - (uri - (string-append - "https://ftp.gajim.org/plugins/master/omemo/omemo_" - version ".zip")) - (sha256 - (base32 "0yy9r9fsrlgdywiln8bskhi8faj9hnz7b19jcap5nkhv8jn9cqq7")))) - (build-system trivial-build-system) - (arguments - `(#:modules ((guix build utils)) - #:builder - (begin - (use-modules (guix build utils)) - (let* ((out (assoc-ref %outputs "out")) - (share (in-vicinity out "share/gajim/plugins/omemo")) - (source (assoc-ref %build-inputs "source"))) - (mkdir-p share) - (copy-recursively source share) - #t)))) - (propagated-inputs - (list python-axolotl python-axolotl-curve25519 python-cryptography - python-qrcode)) - (synopsis "Gajim OMEMO plugin") - (description "Gajim-OMEMO is a plugin that adds support for the OMEMO -Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure -multi-client end-to-end encryption.") - (home-page - "https://dev.gajim.org/gajim/gajim-plugins/-/wikis/OmemoGajimPlugin") - (license license:gpl3+))) + (deprecated-package "gajim-omemo" gajim)) (define-public gajim-openpgp (package |