core/pkgs/stdenv/linux/bootstrap-tools-musl/default.nix
2024-06-30 09:16:52 +01:00

35 lines
508 B
Nix

{
system,
bootstrapFiles,
extraAttrs,
}:
derivation (
{
name = "bootstrap-tools";
builder = bootstrapFiles.busybox;
args = [
"ash"
"-e"
./scripts/unpack-bootstrap-tools.sh
];
tarball = bootstrapFiles.bootstrapTools;
inherit system;
# Needed by the GCC wrapper.
langC = true;
langCC = true;
isGNU = true;
hardeningUnsupportedFlags = [
"fortify3"
"zerocallusedregs"
"trivialautovarinit"
];
}
// extraAttrs
)