mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: Fix a crash in NTP and Chrony.
Fixes <https://bugs.gnu.org/43321>. * gnu/packages/ntp.scm (ntp, chrony)[inputs]: Replace libcap with libcap/next.
This commit is contained in:
parent
1192ae9404
commit
898fbb60b2
1 changed files with 2 additions and 2 deletions
|
@ -80,7 +80,7 @@ (define-public chrony
|
|||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("libcap" ,libcap)
|
||||
`(("libcap" ,libcap/next)
|
||||
("libseccomp" ,libseccomp)
|
||||
("nettle" ,nettle)))
|
||||
(home-page "https://chrony.tuxfamily.org/")
|
||||
|
@ -143,7 +143,7 @@ (define-public ntp
|
|||
;; to run as non-root (when invoked with '-u'.)
|
||||
,@(if (string-suffix? "-linux"
|
||||
(or (%current-target-system) (%current-system)))
|
||||
`(("libcap" ,libcap))
|
||||
`(("libcap" ,libcap/next))
|
||||
'())))
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
|
Loading…
Reference in a new issue