libxkbcommon: fixup build on darwin (#428295)

This commit is contained in:
Vladimír Čunát
2025-07-25 19:23:40 +02:00
+3 -2
View File
@@ -51,9 +51,10 @@ stdenv.mkDerivation (finalAttrs: {
pkg-config
bison
doxygen
xorg.xvfb
]
++ lib.optional stdenv.isLinux xorg.xvfb
++ lib.optional withWaylandTools wayland-scanner;
buildInputs = [
xkeyboard_config
libxcb
@@ -73,7 +74,7 @@ stdenv.mkDerivation (finalAttrs: {
"-Denable-wayland=${lib.boolToString withWaylandTools}"
];
doCheck = true;
doCheck = stdenv.isLinux; # TODO: disable just a part of the tests
preCheck = ''
patchShebangs ../test/
'';