wayland: mark as broken on darwin

This commit is contained in:
Weijia Wang 2023-01-29 07:44:40 +01:00
parent e49997b90c
commit d9986a53ee
2 changed files with 12 additions and 2 deletions

View file

@ -8,7 +8,7 @@
, wayland-scanner , wayland-scanner
, expat , expat
, libxml2 , libxml2
, withLibraries ? stdenv.isLinux , withLibraries ? true
, libffi , libffi
, withDocumentation ? withLibraries && stdenv.hostPlatform == stdenv.buildPlatform , withDocumentation ? withLibraries && stdenv.hostPlatform == stdenv.buildPlatform
, graphviz-nox , graphviz-nox

View file

@ -9018,7 +9018,17 @@ with pkgs;
memtester = callPackage ../tools/system/memtester { }; memtester = callPackage ../tools/system/memtester { };
mesa-demos = callPackage ../tools/graphics/mesa-demos { }; mesa-demos =
let
wayland' = wayland.override { withLibraries = stdenv.isLinux; };
in
callPackage ../tools/graphics/mesa-demos {
wayland = wayland';
wayland-protocols = wayland-protocols.override {
wayland = wayland';
wayland-scanner = wayland'.bin;
};
};
mhonarc = perlPackages.MHonArc; mhonarc = perlPackages.MHonArc;