All checks were successful
Test / Create distribution (push) Successful in 2m40s
Test / Sandbox (push) Successful in 2m46s
Test / ShareFS (push) Successful in 3m47s
Test / Sandbox (race detector) (push) Successful in 5m28s
Test / Hakurei (race detector) (push) Successful in 6m47s
Test / Hakurei (push) Successful in 2m41s
Test / Flake checks (push) Successful in 1m31s
This replaces the '*' placeholder with a less confusing '#'. Signed-off-by: Ophestra <cat@gensokyo.uk>
39 lines
750 B
Go
39 lines
750 B
Go
package strace {
|
|
description = "a diagnostic, debugging and instructional userspace utility";
|
|
website = "https://strace.io";
|
|
anitya = 4897;
|
|
|
|
version# = "6.19";
|
|
source = remoteFile {
|
|
url = "https://strace.io/files/"+version+"/strace-"+version+".tar.xz";
|
|
checksum = "XJFJJ9XLh_1rHS3m_QNjLKzkkBAooE-QT9p9lJNNWowAmd54IJop_fI4-IFtjeeL";
|
|
};
|
|
|
|
early = `
|
|
sed -i 's/off64_t/off_t/g' \
|
|
tests/readahead.c \
|
|
tests/sync_file_range.c \
|
|
tests/sync_file_range2.c
|
|
sed -i 's/unsigned int msg_len;$/uint32_t msg_len;/g' \
|
|
tests/nlattr.c
|
|
`;
|
|
|
|
exec = make {
|
|
configure = {
|
|
// tests broken on clang
|
|
"disable-gcc-Werror";
|
|
|
|
"enable-mpers": "no";
|
|
};
|
|
|
|
// does not compile on musl
|
|
skipCheck = true;
|
|
};
|
|
|
|
inputs = [
|
|
xz,
|
|
|
|
kernel-headers,
|
|
];
|
|
}
|