gnu: gajim: Make some cosmetic changes.
* gnu/packages/messaging.scm (gajim): Make some cosmetic changes. Signed-off-by: Julien Lepiller <julien@lepiller.eu>master
parent
6010fde5e9
commit
51e7e72bca
|
@ -734,14 +734,15 @@ of xmpppy.")
|
||||||
(package
|
(package
|
||||||
(name "gajim")
|
(name "gajim")
|
||||||
(version "1.1.3")
|
(version "1.1.3")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://gajim.org/downloads/"
|
(method url-fetch)
|
||||||
(version-major+minor version)
|
(uri
|
||||||
"/gajim-" version ".tar.bz2"))
|
(string-append "https://gajim.org/downloads/"
|
||||||
(sha256
|
(version-major+minor version)
|
||||||
(base32
|
"/gajim-" version ".tar.bz2"))
|
||||||
"0bzxwcpdd4ydh6d6mzpr0gxwhcb0x9ympk55fpvm1hcw9d28a716"))))
|
(sha256
|
||||||
|
(base32 "0bzxwcpdd4ydh6d6mzpr0gxwhcb0x9ympk55fpvm1hcw9d28a716"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -800,22 +801,25 @@ else [])"))
|
||||||
"/share/glib-2.0/schemas"))))
|
"/share/glib-2.0/schemas"))))
|
||||||
#t)))))
|
#t)))))
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
(list (search-path-specification
|
(list
|
||||||
(variable "GAJIM_PLUGIN_PATH")
|
(search-path-specification
|
||||||
(separator #f) ;single entry
|
(variable "GAJIM_PLUGIN_PATH")
|
||||||
(files '("share/gajim/plugins")))
|
(separator #f) ;single entry
|
||||||
;; Gajim needs to use the propagated inputs of its plugins.
|
(files
|
||||||
(search-path-specification
|
(list
|
||||||
(variable "PYTHONPATH")
|
"share/gajim/plugins")))
|
||||||
(files (list (string-append
|
;; Gajim needs to use the propagated inputs of its plugins.
|
||||||
"lib/python"
|
(search-path-specification
|
||||||
|
(variable "PYTHONPATH")
|
||||||
;; FIXME: Cannot use this expression as it would
|
(files
|
||||||
;; introduce a circular dependency at the top level.
|
(list
|
||||||
;; (version-major+minor (package-version python))
|
(string-append
|
||||||
"3.8"
|
"lib/python"
|
||||||
|
;; FIXME: Cannot use this expression as it would
|
||||||
"/site-packages"))))))
|
;; introduce a circular dependency at the top level.
|
||||||
|
;; (version-major+minor (package-version python))
|
||||||
|
"3.8"
|
||||||
|
"/site-packages"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("intltool" ,intltool)
|
`(("intltool" ,intltool)
|
||||||
("python-docutils" ,python-docutils)
|
("python-docutils" ,python-docutils)
|
||||||
|
@ -838,13 +842,13 @@ else [])"))
|
||||||
("python-pygobject" ,python-pygobject)
|
("python-pygobject" ,python-pygobject)
|
||||||
("python-pyopenssl" ,python-pyopenssl)
|
("python-pyopenssl" ,python-pyopenssl)
|
||||||
("python-qrcode" ,python-qrcode)))
|
("python-qrcode" ,python-qrcode)))
|
||||||
(home-page "https://gajim.org/")
|
|
||||||
(synopsis "Jabber (XMPP) client")
|
(synopsis "Jabber (XMPP) client")
|
||||||
(description "Gajim is a feature-rich and easy to use Jabber/XMPP client.
|
(description "Gajim is a feature-rich and easy to use Jabber/XMPP client.
|
||||||
Among its features are: a tabbed chat window and single window modes; support
|
Among its features are: a tabbed chat window and single window modes; support
|
||||||
for group chat (with Multi-User Chat protocol), invitation, chat to group chat
|
for group chat (with Multi-User Chat protocol), invitation, chat to group chat
|
||||||
transformation; audio and video conferences; file transfer; TLS, GPG and
|
transformation; audio and video conferences; file transfer; TLS, GPG and
|
||||||
end-to-end encryption support; XML console.")
|
end-to-end encryption support; XML console.")
|
||||||
|
(home-page "https://gajim.org/")
|
||||||
(license license:gpl3)))
|
(license license:gpl3)))
|
||||||
|
|
||||||
(define-public gajim-omemo
|
(define-public gajim-omemo
|
||||||
|
|
Reference in New Issue