From 061184a64cc71bd65e1c6ac013e20587835b8af3 Mon Sep 17 00:00:00 2001 From: vasilito Date: Sat, 18 Jul 2026 02:52:57 +0900 Subject: [PATCH] fix(libinput): disable lua-plugins (no lua-5.4 in Redox sysroot) to unblock build --- local/recipes/libs/libinput/recipe.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/local/recipes/libs/libinput/recipe.toml b/local/recipes/libs/libinput/recipe.toml index 4dc28b0d57..c8fd90be14 100644 --- a/local/recipes/libs/libinput/recipe.toml +++ b/local/recipes/libs/libinput/recipe.toml @@ -16,6 +16,10 @@ mesonflags = [ "-Ddebug-gui=false", "-Dtests=false", "-Ddocumentation=false", + # Lua plugin support pulls in a lua-5.4 dependency that is not in the Redox + # sysroot (and meson's cmake fallback probe also fails); the plugin system is + # optional, so disable it to unblock the build. + "-Dlua-plugins=disabled", ] dependencies = [ "libevdev",