gnu: libvirt: Update to 3.4.0, add more inputs.
* gnu/packages/qemu.scm (libvirt): Update to 3.4.0. [inputs]: Add dmidecode, dnsmasq, ebtables, iproute and iptables.
This commit is contained in:
parent
6876a6fe53
commit
8fc7bd234c
|
@ -29,6 +29,7 @@
|
||||||
#:use-module (gnu packages curl)
|
#:use-module (gnu packages curl)
|
||||||
#:use-module (gnu packages cyrus-sasl)
|
#:use-module (gnu packages cyrus-sasl)
|
||||||
#:use-module (gnu packages disk)
|
#:use-module (gnu packages disk)
|
||||||
|
#:use-module (gnu packages dns)
|
||||||
#:use-module (gnu packages gl)
|
#:use-module (gnu packages gl)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
#:use-module (gnu packages gnome)
|
#:use-module (gnu packages gnome)
|
||||||
|
@ -268,14 +269,14 @@ all common programming languages. Vala bindings are also provided.")
|
||||||
(define-public libvirt
|
(define-public libvirt
|
||||||
(package
|
(package
|
||||||
(name "libvirt")
|
(name "libvirt")
|
||||||
(version "3.2.0")
|
(version "3.4.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://libvirt.org/sources/libvirt-"
|
(uri (string-append "http://libvirt.org/sources/libvirt-"
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"17i08v3836c9w4dwcklvbgzin3aw1gbksm9ry8kpk837nn1s10cl"))))
|
"13945hrijybfh634c4x9cbkfazvpzajgv55ll2nx412r4bv6l622"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(;; FAIL: virshtest
|
`(;; FAIL: virshtest
|
||||||
|
@ -324,7 +325,12 @@ all common programming languages. Vala bindings are also provided.")
|
||||||
("perl" ,perl)
|
("perl" ,perl)
|
||||||
("python" ,python-2)
|
("python" ,python-2)
|
||||||
("libyajl" ,libyajl)
|
("libyajl" ,libyajl)
|
||||||
("audit" ,audit)))
|
("audit" ,audit)
|
||||||
|
("dmidecode" ,dmidecode)
|
||||||
|
("dnsmasq" ,dnsmasq)
|
||||||
|
("ebtables" ,ebtables)
|
||||||
|
("iproute" ,iproute)
|
||||||
|
("iptables" ,iptables)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(home-page "http://libvirt.org")
|
(home-page "http://libvirt.org")
|
||||||
|
|
Loading…
Reference in New Issue