From c8c4a6f991008d81dfbbf3f1edd957c22b6b1e77 Mon Sep 17 00:00:00 2001 From: Hilton Chain Date: Sun, 30 Jul 2023 22:24:29 +0800 Subject: [PATCH] rosenthal: Remove wayland-protocols-1.31. wayland-protocols in Guix has been updated to 1.32, this package is not needed. * rosenthal/packages/freedesktop.scm (wayland-protocols-1.31): Delete variable. * rosenthal/packages/wm.scm (wlroots-for-hyprland)[propagated-inputs]: Don't replace wayland-protocols. --- rosenthal/packages/freedesktop.scm | 16 ---------------- rosenthal/packages/wm.scm | 3 +-- 2 files changed, 1 insertion(+), 18 deletions(-) diff --git a/rosenthal/packages/freedesktop.scm b/rosenthal/packages/freedesktop.scm index 27715f8..1ad2c35 100644 --- a/rosenthal/packages/freedesktop.scm +++ b/rosenthal/packages/freedesktop.scm @@ -30,19 +30,3 @@ (native-inputs (modify-inputs (package-native-inputs libinput) (append python-minimal-wrapper python-pytest))))) - -(define-public wayland-protocols-1.31 - (let ((base wayland-protocols)) - (package - (inherit base) - (name "wayland-protocols") - (version "1.31") - (source (origin - (method url-fetch) - (uri (string-append - "https://gitlab.freedesktop.org/wayland/wayland-protocols" - "/-/releases/" version "/downloads/" - "wayland-protocols-" version ".tar.xz")) - (sha256 - (base32 - "0f72359fzvh6jzri4fd79m34rwm2r55p2ryq4306wrw7xliafzx0"))))))) diff --git a/rosenthal/packages/wm.scm b/rosenthal/packages/wm.scm index bd95379..6c9e94a 100644 --- a/rosenthal/packages/wm.scm +++ b/rosenthal/packages/wm.scm @@ -103,8 +103,7 @@ command line tool called @code{udcli} that incorporates the library.") (modify-inputs (package-propagated-inputs base) (append libdisplay-info-for-hyprland libxcb xcb-util-renderutil) (replace "libinput-minimal" libinput-minimal-1.23.0) - (replace "pixman" pixman-0.42.2) - (replace "wayland-protocols" wayland-protocols-1.31))) + (replace "pixman" pixman-0.42.2))) (native-inputs (modify-inputs (package-native-inputs base) (replace "hwdata" `(,hwdata-for-hyprland "out")))))))