guix_mirror_bot pushed a commit to branch mesa-updates
in repository guix.
commit 7a318c02e6acb9aaa1b79f0b0c23a51e36a711f9
Author: Rutherther <[email protected]>
AuthorDate: Fri Sep 26 18:58:52 2025 +0200
gnu: Add wlroots-0.19.
* gnu/packages/wm.scm (wlroots-0.19): New variable.
Change-Id: Iabd13690e9cafdcf876f4f3d18530fb3d75ae21f
Signed-off-by: John Kehayias <[email protected]>
---
gnu/packages/wm.scm | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 3924515f8e..f80266cffc 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -2302,6 +2302,22 @@ Wayland compositor")
modules for building a Wayland compositor.")
(license license:expat))) ; MIT license
+;; Allow packages refering to stable wlroots version, because
+;; wlroots updates are backward incompatible.
+(define-public wlroots-0.19
+ (package
+ (inherit wlroots)
+ (version "0.19.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.freedesktop.org/wlroots/wlroots")
+ (commit version)))
+ (file-name (git-file-name "wlroots" version))
+ (sha256
+ (base32 "1w3nlrvy7625jh4f0l923f7irywzfdashcw5hbf8jq9kpjhpm323"))))))
+
(define-public wlroots-0.18
(package
(inherit wlroots)