aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/package/net-tools/package.az
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-08-15 16:18:44 +0900
committerOphestra <cat@gensokyo.uk>2026-08-15 16:18:44 +0900
commite58b6eb17110e266be07db10d2af212b58cc8f0f (patch)
tree1546dde10e378786cd163b2b42680986b906309d /internal/rosa/package/net-tools/package.az
parent1625aaee80de62380cc40974ae9bd266b3df32e4 (diff)
internal/rosa/package: net-tools
These are nice to have, but will not be included in the base system. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/package/net-tools/package.az')
-rw-r--r--internal/rosa/package/net-tools/package.az33
1 files changed, 33 insertions, 0 deletions
diff --git a/internal/rosa/package/net-tools/package.az b/internal/rosa/package/net-tools/package.az
new file mode 100644
index 00000000..62a50289
--- /dev/null
+++ b/internal/rosa/package/net-tools/package.az
@@ -0,0 +1,33 @@
+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,
+ ];
+}