From b433486c7dde1efbf6514191c2f33784aef414f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Tempel?= Date: Sun, 17 May 2026 18:25:46 +0200 Subject: [PATCH] gnu: mtr: Remove dependency on libcap. This is only needed so that mtr can call setcap(8) from its Makefile, which we don't want it to do. See https://codeberg.org/guix/guix/issues/8614 * gnu/packages/networking.scm (mtr)[inputs]: Remove libcap. Change-Id: I0c532cc4772ed2336bf3251aa5dc4b857b47fe7e --- gnu/packages/networking.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 17509e94a90..12e09c412d9 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -3687,7 +3687,7 @@ can be whipped up with little effort.") (build-system gnu-build-system) (native-inputs (list pkg-config)) (inputs - (list jansson libcap ncurses)) + (list jansson ncurses)) (arguments `(#:tests? #f)) ; tests require network access (home-page "https://www.bitwizard.nl/mtr/")