mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: ntp: Remove input labels.
* gnu/packages/ntp.scm (ntp)[inputs]: Remove input labels.
This commit is contained in:
parent
2565a159fe
commit
9a84da4418
1 changed files with 8 additions and 8 deletions
|
@ -134,14 +134,14 @@ (define-public ntp
|
|||
"sntp/libevent/build-aux")))))
|
||||
(native-inputs (list which pkg-config))
|
||||
(inputs
|
||||
`(("openssl" ,openssl-1.1)
|
||||
("libevent" ,libevent)
|
||||
;; Build with POSIX capabilities support on GNU/Linux. This allows 'ntpd'
|
||||
;; to run as non-root (when invoked with '-u'.)
|
||||
,@(if (string-suffix? "-linux"
|
||||
(or (%current-target-system) (%current-system)))
|
||||
`(("libcap" ,libcap))
|
||||
'())))
|
||||
(cons* openssl-1.1
|
||||
libevent
|
||||
;; Build with POSIX capabilities support on GNU/Linux. This allows
|
||||
;; 'ntpd' to run as non-root (when invoked with '-u'.)
|
||||
(if (string-suffix? "-linux"
|
||||
(or (%current-target-system) (%current-system)))
|
||||
(list libcap)
|
||||
'())))
|
||||
(arguments
|
||||
`(;; Pass "--with-yielding-select=yes" so that 'configure' knows whether
|
||||
;; 'select' yields when using pthreads in a cross-compilation context.
|
||||
|
|
Loading…
Reference in a new issue