diff options
author | Petr Hodina <phodina@protonmail.com> | 2022-12-08 15:15:49 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:35 +0200 |
commit | 79af01a4edb110e57ac7c826f244ead17eafde68 (patch) | |
tree | 0921c1a7af922bb0cc088c15759e1e8e73eab539 /gnu/packages | |
parent | 6f5278d68aca9d0a2eeb3564d45e3d2a808b7abe (diff) | |
download | guix-79af01a4edb110e57ac7c826f244ead17eafde68.tar guix-79af01a4edb110e57ac7c826f244ead17eafde68.tar.gz |
gnu: libxres: Update to 1.2.2.
* gnu/packages/xorg.scm (libxres): Update to 1.2.2.
[source]: Fix uri due to release of xz archive.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/xorg.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 1ef51dfa76..63dd590a72 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -1462,17 +1462,17 @@ treat it as part of their software base when porting.") (define-public libxres (package (name "libxres") - (version "1.2.1") + (version "1.2.2") (source (origin (method url-fetch) (uri (string-append "mirror://xorg/individual/lib/libXres-" version - ".tar.bz2")) + ".tar.xz")) (sha256 (base32 - "049b7dk6hx47161hg47ryjrm6pwsp27r5pby05b0wqb1pcggprmn")))) + "0pvlzahqd8fcyq10wi7ipbxvgrg93hn0vqsymhw7b6sb93rlcx4s")))) (build-system gnu-build-system) (arguments '(#:configure-flags '("--disable-static"))) |