Merge pull request #213300 from wegank/wayland-broken-darwin

wayland: mark as broken on darwin
This commit is contained in:
Weijia Wang 2023-01-29 12:10:49 +01:00 committed by GitHub
commit 19fa7c3266
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -9020,7 +9020,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;