repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
pytrainer: unpin python 3.10
[NixPkgs.git]
/
pkgs
/
stdenv
/
linux
/
bootstrap-tools
/
musl.nix
blob
cc892451b62e90adcce8f9e5023b16ffa567b0bb
1
{
2
system,
3
bootstrapFiles,
4
extraAttrs,
5
}:
6
7
derivation (
8
{
9
name = "bootstrap-tools";
10
11
builder = bootstrapFiles.busybox;
12
13
args = [
14
"ash"
15
"-e"
16
./musl/unpack-bootstrap-tools.sh
17
];
18
19
tarball = bootstrapFiles.bootstrapTools;
20
21
inherit system;
22
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
36
)