updating libvirtd and openvswitch to latest version

This commit is contained in:
Jean-François GUILLAUME 2022-07-06 14:13:26 +02:00
parent 042a621f22
commit fe0b084b4f
GPG key ID: 38751DAE145EFB5A
3 changed files with 22 additions and 2 deletions

View file

@ -63,7 +63,7 @@
)
)
(define-public openvswitch
(define-public openvswitch-2.17
(package
(inherit gnu: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
(inherit libvirt)
(name "libvirt")