diff options
author | David Craven <david@craven.ch> | 2016-08-22 13:06:23 +0200 |
---|---|---|
committer | David Craven <david@craven.ch> | 2016-08-22 13:08:38 +0200 |
commit | 5f2a7f4fcb2f29aa79cdf7d276b7220281319ae0 (patch) | |
tree | 8ec54c056f926f17de7135f6127ee91b167e53ef | |
parent | 548f99b3e0d3647f29ddc3c3864ca36b655f14ec (diff) | |
download | patches-5f2a7f4fcb2f29aa79cdf7d276b7220281319ae0.tar patches-5f2a7f4fcb2f29aa79cdf7d276b7220281319ae0.tar.gz |
gnu: spice: Update to 0.12.8 [fixes CVE-2016-{0749,2150}].
* gnu/packages/spice.scm (spice): Update to 0.12.8.
[inputs]: Add cyrus-sasl.
-rw-r--r-- | gnu/packages/spice.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm index 3e6366e6c0..c0e8d240cf 100644 --- a/gnu/packages/spice.scm +++ b/gnu/packages/spice.scm @@ -20,6 +20,7 @@ #:use-module (gnu packages) #:use-module (gnu packages autotools) ; remove after updating usbredir to 0.7.1+ #:use-module (gnu packages compression) + #:use-module (gnu packages cyrus-sasl) #:use-module (gnu packages gl) #:use-module (gnu packages glib) #:use-module (gnu packages gnome) @@ -199,7 +200,7 @@ which allows users to view a desktop computing environment.") (define-public spice (package (name "spice") - (version "0.13.1") + (version "0.12.8") (source (origin (method url-fetch) (uri (string-append @@ -207,14 +208,15 @@ which allows users to view a desktop computing environment.") "spice-" version ".tar.bz2")) (sha256 (base32 - "18hxk47z58cqbix5h477qmvcdmsrwzv984jw4c6fj0ns4h217jwy")))) + "0za03i77j8i3g5l2np2j7vy8cqsdbkm9wbv4hjnaqq9xhz2sa0gr")))) (build-system gnu-build-system) (propagated-inputs `(("openssl" ,openssl) ("pixman" ,pixman) ("spice-protocol" ,spice-protocol))) (inputs - `(("glib" ,glib) + `(("cyrus-sasl" ,cyrus-sasl) + ("glib" ,glib) ("libjpeg" ,libjpeg) ("lz4" ,lz4) ("opus" ,opus) |