2024-05-02 00:46:19 +00:00
|
|
|
{ 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;
|
2024-05-13 21:24:10 +00:00
|
|
|
hardeningUnsupportedFlags =
|
|
|
|
[ "fortify3" "zerocallusedregs" "trivialautovarinit" ];
|
2024-05-02 00:46:19 +00:00
|
|
|
} // extraAttrs)
|