Skip to content
Snippets Groups Projects
Unverified Commit fbd2a245 authored by Marius Bakke's avatar Marius Bakke
Browse files

gnu: spice-gtk: Update to 0.36.

* gnu/packages/spice.scm (spice-gtk): Update to 0.36.
[inputs]: Add JSON-GLIB.
[arguments]: Disable session test.
parent a2d2c0bf
No related branches found
No related tags found
No related merge requests found
......@@ -117,7 +117,7 @@ (define-public spice-protocol
(define-public spice-gtk
(package
(name "spice-gtk")
(version "0.35")
(version "0.36")
(source (origin
(method url-fetch)
(uri (string-append
......@@ -125,7 +125,7 @@ (define-public spice-gtk
"spice-gtk-" version ".tar.bz2"))
(sha256
(base32
"11lymg467gvj5ys8k22ihnfbxjn4x34ygyzirpg2nphjwlyhgrml"))))
"1kfpixfdmxs9wn3id48gc9bvfrgxz935y3wpykf40bgi9mcc69ki"))))
(build-system gnu-build-system)
(propagated-inputs
`(("gstreamer" ,gstreamer)
......@@ -143,6 +143,7 @@ (define-public spice-gtk
(inputs
`(("glib-networking" ,glib-networking)
("gobject-introspection" ,gobject-introspection)
("json-glib" ,json-glib)
("libepoxy" ,libepoxy)
("libjpeg" ,libjpeg)
("libxcb" ,libxcb)
......@@ -164,6 +165,13 @@ (define-public spice-gtk
"--enable-introspection")
#:phases
(modify-phases %standard-phases
(add-before 'check 'disable-session-test
(lambda _
;; XXX: Disable session tests, because they require USB support,
;; which is not available in the build container.
(substitute* "tests/Makefile"
(("test-session\\$\\(EXEEXT\\) ") ""))
#t))
(add-after
'install 'wrap-spicy
(lambda* (#:key inputs outputs #:allow-other-keys)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment