pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / stdenv / linux / bootstrap-tools / musl.nix
blobcc892451b62e90adcce8f9e5023b16ffa567b0bb
2   system,
3   bootstrapFiles,
4   extraAttrs,
5 }:
7 derivation (
8   {
9     name = "bootstrap-tools";
11     builder = bootstrapFiles.busybox;
13     args = [
14       "ash"
15       "-e"
16       ./musl/unpack-bootstrap-tools.sh
17     ];
19     tarball = bootstrapFiles.bootstrapTools;
21     inherit system;
23     # Needed by the GCC wrapper.
24     langC = true;
25     langCC = true;
26     isGNU = true;
27     hardeningUnsupportedFlags = [
28       "fortify3"
29       "shadowstack"
30       "pacret"
31       "zerocallusedregs"
32       "trivialautovarinit"
33     ];
34   }
35   // extraAttrs