diff options
author | Raghav Gururajan <raghavgururajan@disroot.org> | 2020-01-13 17:11:20 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-01-13 17:14:25 +0100 |
commit | 3f1ed953e8a596dc3a4924758a931b8a774bde5f (patch) | |
tree | b7820370089413d889d89e0b74daa2427ec50db8 /gnu/packages | |
parent | 0847e479f6c8ade3a2deecdf8efe0f18d0efc4d5 (diff) | |
download | patches-3f1ed953e8a596dc3a4924758a931b8a774bde5f.tar patches-3f1ed953e8a596dc3a4924758a931b8a774bde5f.tar.gz |
gnu: Add libgovirt.base-for-series-2632
* gnu/packages/gnome.scm (libgovirt): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 7c7d8d30f0..f3e9377f5c 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7615,6 +7615,34 @@ associations for GNOME.") (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") |