Skip to content

Commit d9986a5

Browse files
committed
wayland: mark as broken on darwin
1 parent e49997b commit d9986a5

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

pkgs/development/libraries/wayland/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
, wayland-scanner
99
, expat
1010
, libxml2
11-
, withLibraries ? stdenv.isLinux
11+
, withLibraries ? true
1212
, libffi
1313
, withDocumentation ? withLibraries && stdenv.hostPlatform == stdenv.buildPlatform
1414
, graphviz-nox

pkgs/top-level/all-packages.nix

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9018,7 +9018,17 @@ with pkgs;
90189018

90199019
memtester = callPackage ../tools/system/memtester { };
90209020

9021-
mesa-demos = callPackage ../tools/graphics/mesa-demos { };
9021+
mesa-demos =
9022+
let
9023+
wayland' = wayland.override { withLibraries = stdenv.isLinux; };
9024+
in
9025+
callPackage ../tools/graphics/mesa-demos {
9026+
wayland = wayland';
9027+
wayland-protocols = wayland-protocols.override {
9028+
wayland = wayland';
9029+
wayland-scanner = wayland'.bin;
9030+
};
9031+
};
90229032

90239033
mhonarc = perlPackages.MHonArc;
90249034

0 commit comments

Comments
 (0)