efraim pushed a commit to branch master
in repository guix.
commit ecc124e2e02afae621d9b29d3079eee0acf5fb41
Author: Efraim Flashner <[email protected]>
AuthorDate: Tue Jan 31 12:08:31 2023 +0200
gnu: xhost: Update to 1.0.9.
* gnu/packages/xorg.scm (xhost): Update to 1.0.9.
[native-inputs]: Add gettext-minimal.
---
gnu/packages/xorg.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 96e0a1236a..c0ce4beb02 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -3650,22 +3650,22 @@ monitor via the X video mode extension.")
(define-public xhost
(package
(name "xhost")
- (version "1.0.8")
+ (version "1.0.9")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://xorg/individual/app/xhost-"
version
- ".tar.bz2"))
+ ".tar.xz"))
(sha256
(base32
- "15n3mnd4i5kh4z32qv11580qjgvnng0wry2y753ljrqkkrbkrp52"))))
+ "0ib66h78ykc4zki4arh8hkcsgk1mk8yyy0ay5sdb2d908qqvb1pa"))))
(build-system gnu-build-system)
(inputs
(list libxmu libxau libx11))
(native-inputs
- (list pkg-config))
+ (list gettext-minimal pkg-config))
(home-page "https://gitlab.freedesktop.org/xorg/app/xhost")
(synopsis "Xorg server access control utility")
(description