gnu: Add libgovirt.
* gnu/packages/gnome.scm (libgovirt): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
0847e479f6
commit
3f1ed953e8
1 changed files with 28 additions and 0 deletions
|
@ -7615,6 +7615,34 @@ (define-public gnome-default-applications
|
|||
(license license:gpl3+)
|
||||
(home-page #f)))
|
||||
|
||||
(define-public libgovirt
|
||||
(package
|
||||
(name "libgovirt")
|
||||
(version "0.3.6")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"19pb71pag3vsi83kbv8h08kimwym4hpw36kjl6a5ik5nk50mc8sg"))))
|
||||
(build-system glib-or-gtk-build-system)
|
||||
(native-inputs
|
||||
`(("gettext" ,gettext-minimal)
|
||||
("glib:bin" ,glib "bin")
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
|
||||
("gtk+:bin" ,gtk+ "bin")
|
||||
("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("glib-networking" ,glib-networking) ; GIO plugin--for the tests
|
||||
("librest" ,rest)))
|
||||
(synopsis "GoVirt Library")
|
||||
(description "GoVirt is a GObject wrapper for the oVirt REST API.")
|
||||
(home-page "https://gitlab.gnome.org/GNOME/libgovirt")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public gnome
|
||||
(package
|
||||
(name "gnome")
|
||||
|
|
Loading…
Reference in a new issue