diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-02-16 10:39:53 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-02-25 14:46:52 -0500 |
commit | c4678cf19b295cbaf6196ca83947c2ea7ce487b5 (patch) | |
tree | 124489319fee80e64b31f67b804d4119cc8507dd | |
parent | 2a607b27a21e06dd1bcad5d909479a50c0e0ee52 (diff) | |
download | guix-c4678cf19b295cbaf6196ca83947c2ea7ce487b5.tar.gz guix-c4678cf19b295cbaf6196ca83947c2ea7ce487b5.zip |
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>
-rw-r--r-- | gnu/packages/spice.scm | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm index 2309287bbb..44bcd5156b 100644 --- a/gnu/packages/spice.scm +++ b/gnu/packages/spice.scm @@ -109,26 +109,24 @@ system to use the host GPU to accelerate 3D rendering.") (define-public spice-protocol (package (name "spice-protocol") - (version "0.14.3") + (version "0.14.4") (source (origin (method url-fetch) (uri (string-append - "https://www.spice-space.org/download/releases/" - "spice-protocol-" version ".tar.xz")) + "https://www.spice-space.org/download/releases/" + "spice-protocol-" version ".tar.xz")) (sha256 (base32 - "0yj8k7gcirrsf21w0q6146n5g4nzn2pqky4p90n5760m5ayfb1pr")))) + "04nr2w6ymy5jinfi3lj6205yd5h0swss3ykxqk7l3m4z1mhvmzq4")))) (build-system meson-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'install-documentation - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (doc (string-append out "/share/doc/" - ,name "-" ,version))) - (install-file "COPYING" doc) - #t)))))) + (list #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'install-documentation + (lambda _ + (install-file "COPYING" + (string-append #$output "/share/doc/" + #$name "-" #$version))))))) (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 |