mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
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:
commit
23a3afd614
3 changed files with 22 additions and 2 deletions
|
@ -63,7 +63,7 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
(define-public openvswitch
|
(define-public openvswitch-2.17
|
||||||
(package
|
(package
|
||||||
(inherit gnu:openvswitch)
|
(inherit gnu:openvswitch)
|
||||||
(name "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
|
(package
|
||||||
(inherit libvirt)
|
(inherit libvirt)
|
||||||
(name "libvirt")
|
(name "libvirt")
|
||||||
|
|
Loading…
Add table
Reference in a new issue