Add "arrch64-darwin" to badPlatforms

Aarch64-darwin is not supported for chez.
This commit is contained in:
Thomas Wu
2021-11-13 16:10:11 +08:00
committed by GitHub
parent 6147e5d317
commit aa5f565899
+1 -1
View File
@@ -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" ];
};
}