mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add gajim-openpgp.
* gnu/packages/messaging.scm (gajim-openpgp): New variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
This commit is contained in:
parent
a9c72b9a5f
commit
2cbda6ded8
1 changed files with 34 additions and 0 deletions
|
@ -894,6 +894,40 @@ (define-public gajim-omemo
|
||||||
"https://dev.gajim.org/gajim/gajim-plugins/-/wikis/OmemoGajimPlugin")
|
"https://dev.gajim.org/gajim/gajim-plugins/-/wikis/OmemoGajimPlugin")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public gajim-openpgp
|
||||||
|
(package
|
||||||
|
(name "gajim-openpgp")
|
||||||
|
(version "1.3.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch/zipbomb)
|
||||||
|
(uri
|
||||||
|
(string-append
|
||||||
|
"https://ftp.gajim.org/plugins_releases/openpgp_"
|
||||||
|
version ".zip"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1jvpl2gjl5xxvsgxpmvh3mn2mm142dg2hknakkc32swb7l1fqx5m"))))
|
||||||
|
(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"))
|
||||||
|
(source (assoc-ref %build-inputs "source")))
|
||||||
|
(mkdir-p share)
|
||||||
|
(copy-recursively source share)
|
||||||
|
#t))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-cryptography" ,python-cryptography)
|
||||||
|
("python-gnupg" ,python-gnupg)))
|
||||||
|
(synopsis "Gajim OpenPGP plugin")
|
||||||
|
(description "Gajim-OpenPGP is a plugin that adds support for the OpenPGP
|
||||||
|
Encryption to Gajim.")
|
||||||
|
(home-page "https://dev.gajim.org/gajim/gajim-plugins/-/wikis/OpenPGPplugin")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public dino
|
(define-public dino
|
||||||
(package
|
(package
|
||||||
(name "dino")
|
(name "dino")
|
||||||
|
|
Loading…
Reference in a new issue