mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
d4720e9c1e
There was a nontrivial conflict in pkgs/stdenv/linux/bootstrap-tools* (reorganizing code vs. modifying it) I hope I really got it right.
37 lines
570 B
Nix
37 lines
570 B
Nix
{
|
|
system,
|
|
bootstrapFiles,
|
|
extraAttrs,
|
|
}:
|
|
|
|
derivation (
|
|
{
|
|
name = "bootstrap-tools";
|
|
|
|
builder = bootstrapFiles.busybox;
|
|
|
|
args = [
|
|
"ash"
|
|
"-e"
|
|
./glibc/unpack-bootstrap-tools.sh
|
|
];
|
|
|
|
tarball = bootstrapFiles.bootstrapTools;
|
|
|
|
inherit system;
|
|
|
|
# Needed by the GCC wrapper.
|
|
langC = true;
|
|
langCC = true;
|
|
isGNU = true;
|
|
hardeningUnsupportedFlags = [
|
|
"fortify3"
|
|
"shadowstack"
|
|
"pacret"
|
|
"stackclashprotection"
|
|
"trivialautovarinit"
|
|
"zerocallusedregs"
|
|
];
|
|
}
|
|
// extraAttrs
|
|
)
|