diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2025-09-09 09:41:58 +0300 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2025-09-09 10:31:30 +0300 |
| commit | 92c95f0a94c9fa19d3945bf0384affdd845a4828 (patch) | |
| tree | d8ed4fa5779691fb13689de68358b3aae9861009 /gnu | |
| parent | 6fd8ff7681bfc51ad405fa9b0adfa711c20b5a23 (diff) | |
gnu: ntp: Add missing inputs.
Fixes guix/guix#2584.
* gnu/packages/ntp.scm (ntp)[inputs]: Add perl.
Change-Id: If484df794a842ee8caa7042795871fa5b9072553
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/ntp.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/ntp.scm b/gnu/packages/ntp.scm index 41d06f7018e..7e83f151d46 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?) |
