deno: prefer badPlatforms over broken for macos (#345440)

This commit is contained in:
Jörg Thalheim
2024-10-04 16:03:41 +02:00
committed by GitHub
+1 -1
View File
@@ -113,6 +113,6 @@ rustPlatform.buildRustPackage rec {
];
# NOTE: `aligned_alloc` error on darwin SDK < 10.15. Can't do usual overrideSDK with rust toolchain in current implementation.
# Should be fixed with darwin SDK refactor and can be revisited.
broken = stdenv.isDarwin && stdenv.isx86_64;
badPlatforms = [ "x86_64-darwin" ];
};
}