deno: mark x86 darwin broken

Aligned_alloc error that can't be fixed until SDK refactor work is done
to allow overriding SDK in rust toolchain.
This commit is contained in:
Austin Horstman
2024-09-25 22:05:11 +02:00
committed by Gaétan Lepage
parent dfb72de3db
commit c7412922a1
+3
View File
@@ -111,5 +111,8 @@ rustPlatform.buildRustPackage rec {
"x86_64-darwin"
"aarch64-darwin"
];
# 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;
};
}