From 6a97af4f8039821b09e7310289fdd9ca8a9f31ca Mon Sep 17 00:00:00 2001 From: Michael Francis Date: Wed, 19 May 2021 21:52:01 +0800 Subject: [PATCH] wayland: broken for darwin --- pkgs/development/libraries/wayland/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/wayland/default.nix b/pkgs/development/libraries/wayland/default.nix index 4a685b43073957..a06d75e53dc4ff 100644 --- a/pkgs/development/libraries/wayland/default.nix +++ b/pkgs/development/libraries/wayland/default.nix @@ -111,6 +111,8 @@ stdenv.mkDerivation rec { license = licenses.mit; # Expat version platforms = if withLibraries then platforms.linux else platforms.unix; maintainers = with maintainers; [ primeos codyopel qyliss ]; + # big sur doesn't support gcc stdenv and wayland doesn't build with clang + broken = stdenv.isDarwin; }; passthru.version = version;