blob: 3207ecde782c0cef13f572ef16dcb48538097f33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
package musl-source {
description = "an implementation of the C standard library - source code";
exclude = true;
version# = "1.2.6";
output = remoteTar {
url = "https://musl.libc.org/releases/musl-"+version+".tar.gz";
checksum = "WtWb_OV_XxLDAB5NerOL9loLlHVadV00MmGk65PPBU1evaolagoMHfvpZp_vxEzS";
compress = gzip;
};
}
package musl-headers {
description = "system installation of musl headers";
source = musl-source;
// expected to be writable in copies
chmod = true;
env = [
"LDFLAGS=" + earlyLDFLAGS,
];
exec = make {
defaults = false;
make = [ "DESTDIR=/work", "install-headers" ];
check = nil;
install = "# headers installed during make";
};
inputs = [ coreutils ];
}
package musl {
description = "an implementation of the C standard library";
website = "https://musl.libc.org";
anitya = 11688;
source = musl-source;
patches = [ "ldso-rosa.patch" ];
// expected to be writable in copies
chmod = true;
env = [
"LDFLAGS=" + earlyLDFLAGS,
];
exec = make {
defaults = false;
check = nil;
postInstall = `
mkdir -p /work/system/bin
COMPAT_LINKER_NAME="ld-musl-` + linuxArch + `.so.1"
ln -vs ../lib/libc.so /work/system/bin/linker
ln -vs ../lib/libc.so /work/system/bin/ldd
ln -vs libc.so "/work/system/lib/${COMPAT_LINKER_NAME}"
rm -v "/work/lib/${COMPAT_LINKER_NAME}"
rmdir -v /work/lib
`;
};
inputs = [ coreutils ];
}
|