Test / Create distribution (push) Successful in 58s
Test / Sandbox (push) Successful in 2m50s
Test / Hakurei (push) Successful in 4m38s
Test / Sandbox (race detector) (push) Successful in 5m48s
Test / Hakurei (race detector) (push) Successful in 6m59s
Test / ShareFS (push) Successful in 7m20s
Test / Flake checks (push) Successful in 1m18s
These are nice to have, but will not be included in the base system. Signed-off-by: Ophestra <cat@gensokyo.uk>
34 lines
711 B
Go
34 lines
711 B
Go
package net-tools {
|
|
description = "the collection of base networking utilities for Linux";
|
|
anitya = 10231;
|
|
|
|
version# = "2.10";
|
|
source = remoteTar {
|
|
url = "https://downloads.sourceforge.net/project/net-tools/"+
|
|
"net-tools-"+version+".tar.xz";
|
|
compress = xz;
|
|
checksum = "YLmSUeHOYnhYhjvnisX6MQNkPJRzOIgSZBHRiWmBdzzziWYJVY6hOpM8eWnAZ11N";
|
|
};
|
|
patches = [
|
|
"CVE-2025-46836.patch",
|
|
"GHSA-h667-qrp8-gj58.patch",
|
|
"f84cd22a921c25c56a6c194d4825dbd9ceea0e5f.patch",
|
|
"GHSA-w7jq-cmw2-cq59.patch",
|
|
];
|
|
|
|
enterSource = true;
|
|
writable = true;
|
|
|
|
exec = make {
|
|
chdir = false;
|
|
configureName = "(set +o pipefail && yes '' | make config)";
|
|
check = nil;
|
|
};
|
|
|
|
inputs = [
|
|
bash,
|
|
|
|
kernel-headers,
|
|
];
|
|
}
|