nixpkgs/pkgs/stdenv/linux/bootstrap-tools-musl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
408 B
Nix
Raw Normal View History

{ 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;
2018-01-11 21:09:34 +00:00
isGNU = true;
hardeningUnsupportedFlags = [ "fortify3" "zerocallusedregs" ];
} // extraAttrs)