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 a3c6281 commit 8ec9b16Copy full SHA for 8ec9b16
pkgs/top-level/release.nix
@@ -251,7 +251,11 @@ let
251
jobs.tests.stdenv.hooks.patch-shebangs.x86_64-linux
252
*/
253
]
254
- ++ collect isDerivation jobs.stdenvBootstrapTools
+ # FIXME: the aarch64-darwin stdenvBootstrapTools are broken
255
+ # due to some locale impurity changing in macOS 15.4
256
+ ++ release-lib.lib.filter (j: j.system != "aarch64-darwin") (
257
+ collect isDerivation jobs.stdenvBootstrapTools
258
+ )
259
++ optionals supportDarwin.x86_64 [
260
jobs.stdenv.x86_64-darwin
261
jobs.cargo.x86_64-darwin
0 commit comments