mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-29 21:58:36 +02:00
updating libvirtd and openvswitch to latest version
This commit is contained in:
parent
042a621f22
commit
fe0b084b4f
3 changed files with 22 additions and 2 deletions
|
@ -63,7 +63,7 @@
|
|||
)
|
||||
)
|
||||
|
||||
(define-public openvswitch
|
||||
(define-public openvswitch-2.17
|
||||
(package
|
||||
(inherit gnu:openvswitch)
|
||||
(name "openvswitch")
|
||||
|
|
20
glicid/packages/python.scm
Normal file
20
glicid/packages/python.scm
Normal 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"))
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
|
@ -101,7 +101,7 @@
|
|||
)
|
||||
)
|
||||
|
||||
(define-public libvirt-8.5.0
|
||||
(define-public libvirt-8.5
|
||||
(package
|
||||
(inherit libvirt)
|
||||
(name "libvirt")
|
||||
|
|
Loading…
Add table
Reference in a new issue