darwin.stdenv: avoid building a second Python just for locales

This commit is contained in:
Randy Eckenrode 2024-10-26 14:27:23 -04:00
parent 53c11b7bb7
commit 53765b0fb3
No known key found for this signature in database
GPG Key ID: 64C1CD4EC2A600D9

View File

@ -1016,6 +1016,8 @@ assert bootstrapTools.passthru.isFromBootstrapFiles or false; # sanity check
# Build expand-response-params with last stage like below
inherit (prevStage) expand-response-params;
};
# Avoid rebuilding bmake (and Python) just for locales
locale = superDarwin.locale.override { inherit (prevStage) bmake; };
}
);