diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-17 12:04:41 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-10 11:44:27 -0500 |
commit | 44d72f72160622100b137bd2214ca9758440280f (patch) | |
tree | d8c12fb8b1c234fe470d54ccdb4278c9f3195a2e /gnu | |
parent | 223cc96e5bb8d7d71f4b769ce722ebbdcebb8289 (diff) | |
download | guix-44d72f72160622100b137bd2214ca9758440280f.tar guix-44d72f72160622100b137bd2214ca9758440280f.tar.gz |
gnu: libx11: Update to 1.7.3.1.
This update eliminates multiple xkbcomp unresolved symbols warnings.
* gnu/packages/xorg.scm (libx11): Update to 1.7.3.1. Fix indentation.
[source]: Update origin's URI.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xorg.scm | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index e794a422c7..1a425779e5 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -5532,18 +5532,18 @@ Wayland.") (define-public libx11 (package (name "libx11") - (version "1.7.2") + (version "1.7.3.1") (source - (origin - (method url-fetch) - (uri (string-append "mirror://xorg/individual/lib/libX11-" - version ".tar.bz2")) - (sha256 - (base32 - "0v7aj8q3rlchdyfwdna7n7vgpyzyir391dlv5rwy9fxagbikbyhw")))) + (origin + (method url-fetch) + (uri (string-append "https://xorg.freedesktop.org/archive/" + "/individual/lib/libX11-" version ".tar.xz")) + (sha256 + (base32 + "1289nvs52q9fnp7zl30bdpbvqggnjjb39vy0zll511zvcrr43z9g")))) (build-system gnu-build-system) (outputs '("out" - "doc")) ;8 MiB of man pages + XML + "doc")) ;8 MiB of man pages + XML (arguments `(#:configure-flags (list (string-append "--mandir=" @@ -5552,9 +5552,9 @@ Wayland.") "--disable-static" ,@(malloc0-flags)))) (propagated-inputs - (list xorgproto libxcb)) + (list xorgproto libxcb)) (inputs - (list xtrans)) + (list xtrans)) (native-inputs (list pkg-config xorgproto)) (home-page "https://www.x.org/wiki/") |