diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-07-11 23:17:53 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-08-12 21:04:19 +0200 |
commit | 597ea1223b9da0ebca8730ec491c252d3c82cbae (patch) | |
tree | dc3e80868c37cbd08b98e81675f63409eec7b0ba /gnu | |
parent | a0f6c3b35d07ca57d3afe068970c3556e8814069 (diff) | |
download | guix-597ea1223b9da0ebca8730ec491c252d3c82cbae.tar guix-597ea1223b9da0ebca8730ec491c252d3c82cbae.tar.gz |
gnu: Add libvirt-glib.
* gnu/packages/qemu.scm (libvirt-glib): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/qemu.scm | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/gnu/packages/qemu.scm b/gnu/packages/qemu.scm index 9b54aa937c..957d8203e0 100644 --- a/gnu/packages/qemu.scm +++ b/gnu/packages/qemu.scm @@ -320,3 +320,51 @@ capabilities of recent versions of Linux. The library aims at providing long term stable C API initially for the Xen paravirtualization but should be able to integrate other virtualization mechanisms if needed.") (license lgpl2.1+))) + +(define-public libvirt-glib + (package + (name "libvirt-glib") + (version "0.2.3") + (source (origin + (method url-fetch) + (uri (string-append "ftp://libvirt.org/libvirt/glib/" + "libvirt-glib-" version ".tar.gz")) + (sha256 + (base32 + "1pahj8qa7k2307sd57rwqwq1hijya02v0sxk91hl3cw48niimcf3")))) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-tests + (lambda _ + (substitute* "tests/test-events.c" + (("/bin/true") (which "true"))) + #t))))) + (inputs + `(("libxml2" ,libxml2) + ("libvirt" ,libvirt) + ("gobject-introspection" ,gobject-introspection) + ("glib" ,glib) + ("openssl" ,openssl) + ("cyrus-sasl" ,cyrus-sasl) + ("lvm2" ,lvm2) ; for libdevmapper + ("libyajl" ,libyajl))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("intltool" ,intltool) + ("glib" ,glib "bin") + ("vala" ,vala))) + (home-page "http://libvirt.org") + (synopsis "GLib wrapper around libvirt") + (description "libvirt-glib wraps the libvirt library to provide a +high-level object-oriented API better suited for glib-based applications, via +three libraries: + +@enumerate +@item libvirt-glib - GLib main loop integration & misc helper APIs +@item libvirt-gconfig - GObjects for manipulating libvirt XML documents +@item libvirt-gobject - GObjects for managing libvirt objects +@end enumerate +") + (license lgpl2.1+))) |