diff options
author | Felix Lechner <felix.lechner@lease-up.com> | 2022-09-16 10:36:36 -0700 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-09-18 10:35:38 +0200 |
commit | cbe461f2d497554fd667429cd9db5ee990c7fadb (patch) | |
tree | 1f27c53396460a69155b81771467e2c8599255ec /gnu | |
parent | 44d37eaae1d883b71e45c487ba0445f7cd3fa299 (diff) |
gnu: xkeyboard-config: Update to 2.36.
* gnu/packages/xorg.scm (xkeyboard-config): Update to 2.36.
[source]: Retrieve xz tarball, bz2 is no longer distributed.
[source]: Break long url to satisfy guix lint.
[build-system]: Use meson-build-system.
[native-inputs]: Drop labels.
Signed-off-by: Marius Bakke <marius@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xorg.scm | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 1b8562a619..aeb73ad631 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -3871,22 +3871,18 @@ extension to the X11 protocol. It includes: (define-public xkeyboard-config (package (name "xkeyboard-config") - (version "2.34") - (source - (origin - (method url-fetch) - (uri (string-append - "ftp://ftp.freedesktop.org/pub/xorg//individual/data/xkeyboard-config/xkeyboard-config-" - version - ".tar.bz2")) - (sha256 - (base32 - "1kmq2ykwmh10sd6155gml4jhdxmvsll6xdg7zw86czpfhrvd48dk")))) - (build-system gnu-build-system) - (inputs - (list libx11 xkbcomp-intermediate)) - (native-inputs - (list gettext-minimal libxslt perl pkg-config python)) + (version "2.36") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://xorg/individual/data/xkeyboard-config/" + "xkeyboard-config-" version ".tar.xz")) + (sha256 + (base32 + "158m7r6ga7w12ry35q6d0z6hilbpj9h7ilw56h55478n58lv26qz")))) + (build-system meson-build-system) + (inputs (list libx11 xkbcomp-intermediate)) + (native-inputs (list gettext-minimal libxslt perl pkg-config python)) (home-page "https://www.x.org/wiki/") (synopsis "Xorg XKB configuration files") (description |