Andy Tai wrote 2 years ago
(address . guix-patches@gnu.org)
From c0d5a50849b02e909e465491660deef50c42b420 Mon Sep 17 00:00:00 2001
From: andy Tai <atai@atai.org>
Date: Thu, 10 Nov 2022 08:27:43 -0800
Subject: [PATCH] gnu: wlroots: Update to 0.15.1
* gnu/packages/wm.scm (wlroots): Update to 0.15.1
---
gnu/packages/wm.scm | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
Toggle diff (57 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 54e1c9c016..4ba66d315c 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -58,6 +58,7 @@
;;; Copyright © 2022 Elais Player <elais@fastmail.com>
;;; Copyright © 2022 Trevor Richards <trev@trevdev.ca>
;;; Copyright © 2022 Fredrik Salomonsson <plattfot@posteo.net>
+;;; Copyright © 2022 Andy Tai <atai@atai.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1535,16 +1536,16 @@ (define-public polybar
(define-public wlroots
(package
(name "wlroots")
- (version "0.14.1")
+ (version "0.15.1")
(source
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/swaywm/wlroots")
+ (url "https://gitlab.freedesktop.org/wlroots/wlroots.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "1sshp3lvlkl1i670kxhwsb4xzxl8raz6769kqvgmxzcb63ns9ay1"))))
+ (base32 "00s73nhi3sc48l426jdlqwpclg41kx1hv0yk4yxhbzw19gqpfm1h"))))
(build-system meson-build-system)
(arguments
`(#:phases
@@ -1559,19 +1560,20 @@ (define-public wlroots
(propagated-inputs
(list ;; As required by wlroots.pc.
eudev
+ libdrm
libinput-minimal
libxkbcommon
mesa
pixman
libseat
wayland
- wayland-protocols
+ wayland-protocols-next
xcb-util-errors
xcb-util-wm
xorg-server-xwayland))
(native-inputs
(list pkg-config))
- (home-page "https://github.com/swaywm/wlroots")
+ (home-page "https://gitlab.freedesktop.org/wlroots/wlroots.git")
(synopsis "Pluggable, composable, unopinionated modules for building a
Wayland compositor")
(description "wlroots is a set of pluggable, composable, unopinionated
--
2.38.1