Merge branch 'devel' into 'main'

updating libvirtd and openvswitch to latest version

See merge request glicid-public/guix-glicid!69
This commit is contained in:
Jean-François GUILLAUME 2022-07-06 12:13:58 +00:00
commit 23a3afd614
3 changed files with 22 additions and 2 deletions

View file

@ -63,7 +63,7 @@
) )
) )
(define-public openvswitch (define-public openvswitch-2.17
(package (package
(inherit gnu:openvswitch) (inherit gnu:openvswitch)
(name "openvswitch") (name "openvswitch")

View file

@ -0,0 +1,20 @@
(define-module (glicid packages python)
#:use-module (guix download)
#:use-module (guix packages)
#:use-module ((gnu packages python) #:prefix gnu:)
)
(define-public python-3.10
(package
(inherit gnu:python-3)
(name "python")
(version "3.10.5")
(source
(origin
(method url-fetch)
(uri (string-append "https://www.python.org/ftp/python/" version "/Python-" version ".tar.xz"))
(sha256 (base32 "11j4nzbnhbif9pg2m8l67akj0lb2h3c27gxzm9shmvq6n7ayydw4"))
)
)
)
)

View file

@ -101,7 +101,7 @@
) )
) )
(define-public libvirt-8.5.0 (define-public libvirt-8.5
(package (package
(inherit libvirt) (inherit libvirt)
(name "libvirt") (name "libvirt")