From aa5f5658993acc6b7d98eebd9eaca3ac747f3c7e Mon Sep 17 00:00:00 2001 From: Thomas Wu <61684794+ixnij@users.noreply.github.com> Date: Sat, 13 Nov 2021 16:10:11 +0800 Subject: [PATCH] Add "arrch64-darwin" to badPlatforms Aarch64-darwin is not supported for chez. --- pkgs/development/compilers/chez/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/chez/default.nix b/pkgs/development/compilers/chez/default.nix index c1c8eced83ba..a02256697daf 100644 --- a/pkgs/development/compilers/chez/default.nix +++ b/pkgs/development/compilers/chez/default.nix @@ -73,6 +73,6 @@ stdenv.mkDerivation rec { license = lib.licenses.asl20; maintainers = with lib.maintainers; [ thoughtpolice ]; platforms = lib.platforms.unix; - badPlatforms = [ "aarch64-linux" ]; + badPlatforms = [ "aarch64-linux" "aarch64-darwin" ]; }; }