We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e227f24 commit 815aab1Copy full SHA for 815aab1
1 file changed
pkgs/by-name/bu/bun/package.nix
@@ -121,7 +121,9 @@ stdenvNoCC.mkDerivation rec {
121
platforms = builtins.attrNames passthru.sources;
122
# Broken for Musl at 2024-01-13, tracking issue:
123
# https://github.com/NixOS/nixpkgs/issues/280716
124
- broken = stdenvNoCC.hostPlatform.isMusl;
+ # Broken on systems with page sizes > 16k
125
+ # https://github.com/oven-sh/bun/issues/6241
126
+ broken = stdenvNoCC.hostPlatform.isMusl || stdenvNoCC.hostPlatform.pageSize.min > 16384;
127
128
# Hangs when run via Rosetta 2 on Apple Silicon
129
hydraPlatforms = lib.lists.remove "x86_64-darwin" lib.platforms.all;
0 commit comments