1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

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 10:00:38 -05:00 committed by Gaétan Lepage
parent dfb72de3db
commit c7412922a1

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