Skip to content

Commit

Permalink
bun: mark broken on > 16k page size systems
Browse files Browse the repository at this point in the history
  • Loading branch information
RossComputerGuy committed Feb 20, 2025
1 parent 367c382 commit d18b238
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/by-name/bu/bun/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,9 @@ stdenvNoCC.mkDerivation rec {
platforms = builtins.attrNames passthru.sources;
# Broken for Musl at 2024-01-13, tracking issue:
# https://github.com/NixOS/nixpkgs/issues/280716
broken = stdenvNoCC.hostPlatform.isMusl;
# Broken on systems with page sizes > 16k
# https://github.com/oven-sh/bun/issues/6241
broken = stdenvNoCC.hostPlatform.isMusl || stdenvNoCC.hostPlatform.pageSize.min > 16384;

# Hangs when run via Rosetta 2 on Apple Silicon
hydraPlatforms = lib.lists.remove "x86_64-darwin" lib.platforms.all;
Expand Down

0 comments on commit d18b238

Please sign in to comment.