gnu: Add virt-viewer@9.0 and virt-viewer@10.0

This commit is contained in:
Collin J. Doering 2021-11-29 17:07:49 -05:00
parent af9a4d3df9
commit d4a33020e0
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 79 additions and 0 deletions

View File

@ -0,0 +1,79 @@
;; (C) Copyright Collin J. Doering 2021
;;
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;; File: spice.scm
;; Author: Collin J. Doering <collin.doering@rekahsoft.ca>
;; Date: Jul 5, 2021
(define-module (rekahsoft-gnu packages spice)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system meson)
#:use-module (gnu packages spice)
#:use-module (gnu packages gtk)
#:use-module (gnu packages gnome)
#:use-module (gnu packages linux)
#:use-module (gnu packages xml)
#:use-module (gnu packages glib)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages build-tools))
(define-public virt-viewer-9
(package
(inherit virt-viewer)
(version "9.0")
(name "virt-viewer")
(source (origin
(method url-fetch)
(uri (string-append
"https://virt-manager.org/download/sources/virt-viewer/"
"virt-viewer-" version ".tar.gz"))
(sha256
(base32
"09a83mzyn3b4nd7wpa659g1zf1fjbzb79rk968bz6k5xl21k7d4i"))))))
(define-public virt-viewer-11
(package
(name "virt-viewer")
(version "11.0")
(source (origin
(method url-fetch)
(uri (string-append
"https://virt-manager.org/download/sources/virt-viewer/"
"virt-viewer-" version ".tar.xz"))
(sha256
(base32
"1l5bv6x6j21l487mk3n93ai121gg62n6b069r2jpf72cbhra4gx4"))))
(inputs
`(("gtk+" ,gtk+)
("gtk-vnc" ,gtk-vnc)
("libcap" ,libcap)
("libxml2" ,libxml2)
("spice-gtk" ,spice-gtk)))
(propagated-inputs
`(("gnome-icon-theme" ,gnome-icon-theme)))
(native-inputs
`(("glib:bin" ,glib "bin")
("intltool" ,intltool)
("pkg-config" ,pkg-config)))
(build-system meson-build-system)
(arguments
`(#:meson ,meson-0.55))
(synopsis "Graphical console client for virtual machines")
(description "Graphical console client for virtual machines using SPICE or
VNC.")
(home-page "https://virt-manager.org")
(license license:gpl2+)))