2021-11-29 22:07:49 +00:00
|
|
|
;; (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)
|
2022-01-22 18:49:02 +00:00
|
|
|
#:use-module (gnu packages python)
|
2021-11-29 22:07:49 +00:00
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
#:use-module (gnu packages build-tools))
|
|
|
|
|
|
|
|
(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
|
2022-01-22 02:36:53 +00:00
|
|
|
(list gtk+
|
|
|
|
gtk-vnc
|
|
|
|
libcap
|
|
|
|
libxml2
|
|
|
|
spice-gtk))
|
2021-11-29 22:07:49 +00:00
|
|
|
(native-inputs
|
2022-01-22 02:47:58 +00:00
|
|
|
`(("glib:bin" ,glib "bin")
|
|
|
|
("intltool" ,intltool)
|
2022-01-22 17:28:27 +00:00
|
|
|
("pkg-config" ,pkg-config)
|
2022-01-22 17:29:19 +00:00
|
|
|
("python" ,python)))
|
2021-11-29 22:07:49 +00:00
|
|
|
(build-system meson-build-system)
|
|
|
|
(arguments
|
2021-12-25 02:07:54 +00:00
|
|
|
`(#:meson ,meson-0.59))
|
2021-11-29 22:07:49 +00:00
|
|
|
(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+)))
|