diff options
author | Andy Tai <atai@atai.org> | 2024-05-24 22:44:43 -0700 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-05-26 09:51:11 +0100 |
commit | 13d5e6f84a5a3130b628bc37377db562fc69b057 (patch) | |
tree | d359634e851792824f6080f2345a5ed444c47be6 | |
parent | a4a45669c76f80d5126add818df22f42547bb4a2 (diff) | |
download | guix-13d5e6f84a5a3130b628bc37377db562fc69b057.tar.gz |
gnu: xpra: Update to 6.0.1.
* gnu/packages/xorg.scm (xpra): Update to 6.0.1. Change-Id: Iddd33aa57f1959c753df892c9b26df48e85b16ad Signed-off-by: Christopher Baines <mail@cbaines.net>
-rw-r--r-- | gnu/packages/xorg.scm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 1f1fe4d7c6..c13a1f4215 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -6158,14 +6158,16 @@ basic eye-candy effects.") (define-public xpra (package (name "xpra") - (version "6.0") + (version "6.0.1") (source (origin - (method url-fetch) - (uri (string-append "https://www.xpra.org/src/xpra-" - version ".tar.xz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/Xpra-org/xpra.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "1dh89k2whvim4lgnryr9hisdq2zzcc5md9c3vm49y6jsp4j77glq")) + (base32 "0l92zscy1kjb0bpsdd8r2mchv2gks0krz6dj34s65c34zwa1rwg6")) (patches (search-patches "xpra-6.0-systemd-run.patch" "xpra-6.0-install_libs.patch")))) (build-system python-build-system) |