wayland: mark as broken on darwin
This commit is contained in:
parent
e49997b90c
commit
d9986a53ee
2 changed files with 12 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue