gnu: spice-protocol: Update to 0.14.4.
* gnu/packages/spice.scm (spice-protocol): Update to 0.14.4. [arguments]: Use gexps. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
parent
2a607b27a2
commit
c4678cf19b
|
@ -109,7 +109,7 @@ system to use the host GPU to accelerate 3D rendering.")
|
||||||
(define-public spice-protocol
|
(define-public spice-protocol
|
||||||
(package
|
(package
|
||||||
(name "spice-protocol")
|
(name "spice-protocol")
|
||||||
(version "0.14.3")
|
(version "0.14.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -117,18 +117,16 @@ system to use the host GPU to accelerate 3D rendering.")
|
||||||
"spice-protocol-" version ".tar.xz"))
|
"spice-protocol-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0yj8k7gcirrsf21w0q6146n5g4nzn2pqky4p90n5760m5ayfb1pr"))))
|
"04nr2w6ymy5jinfi3lj6205yd5h0swss3ykxqk7l3m4z1mhvmzq4"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list #:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'install-documentation
|
(add-after 'unpack 'install-documentation
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda _
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(install-file "COPYING"
|
||||||
(doc (string-append out "/share/doc/"
|
(string-append #$output "/share/doc/"
|
||||||
,name "-" ,version)))
|
#$name "-" #$version)))))))
|
||||||
(install-file "COPYING" doc)
|
|
||||||
#t))))))
|
|
||||||
(synopsis "Protocol headers for the SPICE protocol")
|
(synopsis "Protocol headers for the SPICE protocol")
|
||||||
(description "SPICE (the Simple Protocol for Independent Computing
|
(description "SPICE (the Simple Protocol for Independent Computing
|
||||||
Environments) is a remote-display system built for virtual environments
|
Environments) is a remote-display system built for virtual environments
|
||||||
|
|
Reference in New Issue