From db45103d1bc23d56692571d652f56f8866dc956d Mon Sep 17 00:00:00 2001 From: hypevhs Date: Thu, 13 Mar 2025 11:30:35 -0500 Subject: [PATCH] fix(monado dependencies): use wayland-protocols-devel on Fedora --- src/depcheck/monado_deps.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/depcheck/monado_deps.rs b/src/depcheck/monado_deps.rs index 93055d3..8c555fc 100644 --- a/src/depcheck/monado_deps.rs +++ b/src/depcheck/monado_deps.rs @@ -37,7 +37,7 @@ fn monado_deps() -> Vec { packages: HashMap::from([ (LinuxDistro::Arch, "wayland-protocols".into()), (LinuxDistro::Debian, "wayland-protocols".into()), - (LinuxDistro::Fedora, "wayland-protocols".into()), + (LinuxDistro::Fedora, "wayland-protocols-devel".into()), (LinuxDistro::Gentoo, "dev-libs/wayland-protocols".into()), (LinuxDistro::Suse, "wayland-protocols-devel".into()), ]),