From 92c95f0a94c9fa19d3945bf0384affdd845a4828 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 9 Sep 2025 09:41:58 +0300 Subject: [PATCH] gnu: ntp: Add missing inputs. Fixes guix/guix#2584. * gnu/packages/ntp.scm (ntp)[inputs]: Add perl. Change-Id: If484df794a842ee8caa7042795871fa5b9072553 --- gnu/packages/ntp.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/ntp.scm b/gnu/packages/ntp.scm index 41d06f7018e5f3dd9b27dd46042a287c3d60728d..7e83f151d462834ac90e6e904e68875b97c3fb78 100644 --- a/gnu/packages/ntp.scm +++ b/gnu/packages/ntp.scm @@ -39,6 +39,7 @@ #:use-module (gnu packages linux) #:use-module (gnu packages m4) #:use-module (gnu packages nettle) + #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages python-xyz) @@ -167,7 +168,9 @@ time-stamping or reference clock, sub-microsecond accuracy is possible.") (rename-file "sntp/libevent:build-aux" "sntp/libevent/build-aux"))))) (native-inputs (list which pkg-config)) - (inputs (cons* openssl libevent + (inputs (cons* libevent + openssl + perl ;; Build with POSIX capabilities support on GNU/Linux. This allows ;; 'ntpd' to run as non-root (when invoked with '-u'.) (if (target-linux?)