2021-04-26 17:21:17 +02:00
|
|
|
{ system, bootstrapFiles, extraAttrs }:
|
2016-12-15 23:09:29 +01:00
|
|
|
|
2021-04-26 17:21:17 +02:00
|
|
|
derivation ({
|
2016-12-15 23:09:29 +01:00
|
|
|
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;
|
2023-01-21 18:39:36 +01:00
|
|
|
hardeningUnsupportedFlags = [ "fortify3" ];
|
2021-04-26 17:21:17 +02:00
|
|
|
} // extraAttrs)
|