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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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" ];
};
}