gnu: spice-protocol: Update to 0.14.0.
* gnu/packages/spice.scm (spice-protocol): Update to 0.14.0. (spice-protocol-0.12): New public variable. (spice-gtk)[propagated-inputs]: Change SPICE-PROTOCOL to SPICE-PROTOCOL-0.12.
This commit is contained in:
parent
15ada26abb
commit
a550da6247
1 changed files with 17 additions and 3 deletions
|
@ -2,6 +2,7 @@
|
||||||
;;; Copyright © 2016 David Craven <david@craven.ch>
|
;;; Copyright © 2016 David Craven <david@craven.ch>
|
||||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2019 Rutger Helling <rhelling@mykolab.com>
|
;;; Copyright © 2019 Rutger Helling <rhelling@mykolab.com>
|
||||||
|
;;; Copyright © 2019 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -97,6 +98,26 @@ (define-public virglrenderer
|
||||||
(define-public spice-protocol
|
(define-public spice-protocol
|
||||||
(package
|
(package
|
||||||
(name "spice-protocol")
|
(name "spice-protocol")
|
||||||
|
(version "0.14.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://www.spice-space.org/download/releases/"
|
||||||
|
"spice-protocol-" version ".tar.bz2"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1b3f44c13pqsp7aabmcinfbmgl79038bp5548l5pjs16lcfam95n"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(synopsis "Protocol headers for the SPICE protocol")
|
||||||
|
(description "SPICE (the Simple Protocol for Independent Computing
|
||||||
|
Environments) is a remote-display system built for virtual environments
|
||||||
|
which allows users to view a desktop computing environment.")
|
||||||
|
(home-page "https://www.spice-space.org")
|
||||||
|
(license (list license:bsd-3 license:lgpl2.1+))))
|
||||||
|
|
||||||
|
(define-public spice-protocol-0.12
|
||||||
|
(package
|
||||||
|
(inherit spice-protocol)
|
||||||
(version "0.12.15")
|
(version "0.12.15")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -105,14 +126,7 @@ (define-public spice-protocol
|
||||||
"spice-protocol-" version ".tar.bz2"))
|
"spice-protocol-" version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"06b461i4jv741in8617jjpfk28wk7zs9p7841njkf4sbm8xv4kcb"))))
|
"06b461i4jv741in8617jjpfk28wk7zs9p7841njkf4sbm8xv4kcb"))))))
|
||||||
(build-system gnu-build-system)
|
|
||||||
(synopsis "Protocol headers for the SPICE protocol")
|
|
||||||
(description "SPICE (the Simple Protocol for Independent Computing
|
|
||||||
Environments) is a remote-display system built for virtual environments
|
|
||||||
which allows users to view a desktop computing environment.")
|
|
||||||
(home-page "https://www.spice-space.org")
|
|
||||||
(license (list license:bsd-3 license:lgpl2.1+))))
|
|
||||||
|
|
||||||
(define-public spice-gtk
|
(define-public spice-gtk
|
||||||
(package
|
(package
|
||||||
|
@ -134,7 +148,7 @@ (define-public spice-gtk
|
||||||
("gst-plugins-good" ,gst-plugins-good)
|
("gst-plugins-good" ,gst-plugins-good)
|
||||||
("gst-plugins-bad" ,gst-plugins-bad)
|
("gst-plugins-bad" ,gst-plugins-bad)
|
||||||
("gst-plugins-ugly" ,gst-plugins-ugly)
|
("gst-plugins-ugly" ,gst-plugins-ugly)
|
||||||
("spice-protocol" ,spice-protocol)
|
("spice-protocol" ,spice-protocol-0.12)
|
||||||
|
|
||||||
;; These are required by the pkg-config files.
|
;; These are required by the pkg-config files.
|
||||||
("gtk+" ,gtk+)
|
("gtk+" ,gtk+)
|
||||||
|
|
Loading…
Reference in a new issue