updating libvirtd and openvswitch to latest version

This commit is contained in:
Jean-François GUILLAUME 2022-07-06 12:22:23 +02:00
parent 8de2bee9ed
commit 1a5e354d6b
GPG key ID: 38751DAE145EFB5A
3 changed files with 356 additions and 5 deletions

View file

@ -62,3 +62,18 @@
)
)
)
(define-public openvswitch
(package
(inherit gnu:openvswitch)
(name "openvswitch")
(version "2.17.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://www.openvswitch.org/releases/openvswitch-" version ".tar.gz"))
(sha256 (base32 "0sada2a9x9x7x6a45l7iklqh29wsbrdvvgpkyz5cpf5d5fs0sbka"))
)
)
)
)