diff options
author | 宋文武 <[email protected]> | 2024-12-28 16:22:34 +0800 |
---|---|---|
committer | 宋文武 <[email protected]> | 2025-01-31 16:39:23 +0800 |
commit | 73a5a3d9a5a403fd40ecf0542fbb9e8b33b3bc1e (patch) | |
tree | 5202845ddaab23863be497728092c10eb8456a94 /gnu | |
parent | 17631cfc73218b291ea594d2cae1b1a86ad6b51a (diff) |
gnu: xorgproto: Update to 2024.1.
* gnu/packages/xorg.scm (xorgproto): Update to 2024.1.
(xorgproto-2024): Remove package.
(xorg-server-wayland)[inputs]: Replace xorgproto-2024 with xorgproto.
Change-Id: I330362aae60521c73928e1f2d4ceda05a922240d
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xorg.scm | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 34478a02bd..e60ea4e27f 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -254,14 +254,14 @@ which can be read by any architecture.") (define-public xorgproto (package (name "xorgproto") - (version "2023.2") + (version "2024.1") (source (origin (method url-fetch) (uri (string-append "mirror://xorg/individual/proto" "/xorgproto-" version ".tar.xz")) (sha256 (base32 - "0b4c27aq25w1fccks49p020avf9jzh75kaq5qwnww51bp1yvq7xn")))) + "0nfbbi4j130m2gxzp20hp642xizbbl68jpbzahiq8nw183yja8ip")))) (build-system gnu-build-system) (propagated-inputs ;; To get util-macros in (almost?) all package inputs. @@ -273,18 +273,6 @@ which can be read by any architecture.") the core protocol and (many) extensions for the X Window System.") (license license:x11))) -(define-public xorgproto-2024 - (package - (inherit xorgproto) - (version "2024.1") - (source (origin - (method url-fetch) - (uri (string-append "mirror://xorg/individual/proto" - "/xorgproto-" version ".tar.xz")) - (sha256 - (base32 - "0nfbbi4j130m2gxzp20hp642xizbbl68jpbzahiq8nw183yja8ip")))))) - (define-public bigreqsproto (package (name "bigreqsproto") @@ -5379,7 +5367,7 @@ EGLStream families of extensions.") wayland-protocols xkbcomp xkeyboard-config - xorgproto-2024 + xorgproto xtrans)) (native-inputs (cons pkg-config (if (%current-target-system) |