mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
Merge branch 'ccipl' of gitlab.univ-nantes.fr:glicid-public/guix-mirror into ccipl
This commit is contained in:
commit
8e2f32e1b3
1 changed files with 27 additions and 4 deletions
|
@ -26,6 +26,7 @@
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages python-science)
|
#:use-module (gnu packages python-science)
|
||||||
|
#:use-module (gnu packages python-web)
|
||||||
#:use-module (gnu packages python-xyz)
|
#:use-module (gnu packages python-xyz)
|
||||||
#:use-module (gnu packages readline)
|
#:use-module (gnu packages readline)
|
||||||
#:use-module (gnu packages tcl)
|
#:use-module (gnu packages tcl)
|
||||||
|
@ -40,7 +41,8 @@
|
||||||
#:use-module (gnu packages fabric-management)
|
#:use-module (gnu packages fabric-management)
|
||||||
#:use-module (gnu packages benchmark)
|
#:use-module (gnu packages benchmark)
|
||||||
#:use-module (gnu packages messaging)
|
#:use-module (gnu packages messaging)
|
||||||
#:use-module (gnu packages web))
|
#:use-module (gnu packages web)
|
||||||
|
#:use-module (gnu packages gnome))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -310,6 +312,21 @@
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|
||||||
|
(define-public glicid-python-nbxmpp
|
||||||
|
(package
|
||||||
|
(inherit python-nbxmpp)
|
||||||
|
(name "glicid-python-nbxmpp")
|
||||||
|
(version "1.0.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "nbxmpp" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0vw5drr077w9ks4crnw6pwa4735ycyjdcm54knc3w4in4x5027wr"))))
|
||||||
|
|
||||||
|
))
|
||||||
|
|
||||||
|
|
||||||
(define-public glicid-gajim
|
(define-public glicid-gajim
|
||||||
(package
|
(package
|
||||||
|
@ -324,14 +341,20 @@
|
||||||
))
|
))
|
||||||
|
|
||||||
(inputs `(("python-packaging", python-packaging)
|
(inputs `(("python-packaging", python-packaging)
|
||||||
("python-nbxmpp", python-nbxmpp)
|
("glicid-python-nbxmpp", glicid-python-nbxmpp)
|
||||||
,@(package-inputs gajim)))
|
("python-css-parser", python-css-parser)
|
||||||
|
,@(package-inputs gajim)))
|
||||||
|
|
||||||
|
(propagated-inputs
|
||||||
|
`(
|
||||||
|
("glib-networking" ,glib-networking)
|
||||||
|
("libsoup" ,libsoup)
|
||||||
|
))
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;;; glicid.scm ends here
|
;;; glicid.scm ends here
|
||||||
|
|
Loading…
Add table
Reference in a new issue