me
/
guix
Archived
1
0
Fork 0

gnu: ntp: Remove input labels.

* gnu/packages/ntp.scm (ntp)[inputs]:
Remove input labels.
master
Tobias Geerinckx-Rice 2023-07-16 02:00:05 +02:00
parent 2565a159fe
commit 9a84da4418
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 8 additions and 8 deletions

View File

@ -134,14 +134,14 @@ time-stamping or reference clock, sub-microsecond accuracy is possible.")
"sntp/libevent/build-aux"))))) "sntp/libevent/build-aux")))))
(native-inputs (list which pkg-config)) (native-inputs (list which pkg-config))
(inputs (inputs
`(("openssl" ,openssl-1.1) (cons* openssl-1.1
("libevent" ,libevent) libevent
;; Build with POSIX capabilities support on GNU/Linux. This allows 'ntpd' ;; Build with POSIX capabilities support on GNU/Linux. This allows
;; to run as non-root (when invoked with '-u'.) ;; 'ntpd' to run as non-root (when invoked with '-u'.)
,@(if (string-suffix? "-linux" (if (string-suffix? "-linux"
(or (%current-target-system) (%current-system))) (or (%current-target-system) (%current-system)))
`(("libcap" ,libcap)) (list libcap)
'()))) '())))
(arguments (arguments
`(;; Pass "--with-yielding-select=yes" so that 'configure' knows whether `(;; Pass "--with-yielding-select=yes" so that 'configure' knows whether
;; 'select' yields when using pthreads in a cross-compilation context. ;; 'select' yields when using pthreads in a cross-compilation context.