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 @@
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("libcap" ,libcap)
|
`(("libcap" ,libcap/next)
|
||||||
("libseccomp" ,libseccomp)
|
("libseccomp" ,libseccomp)
|
||||||
("nettle" ,nettle)))
|
("nettle" ,nettle)))
|
||||||
(home-page "https://chrony.tuxfamily.org/")
|
(home-page "https://chrony.tuxfamily.org/")
|
||||||
|
@ -143,7 +143,7 @@ time-stamping or reference clock, sub-microsecond accuracy is possible.")
|
||||||
;; to run as non-root (when invoked with '-u'.)
|
;; 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))
|
`(("libcap" ,libcap/next))
|
||||||
'())))
|
'())))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
|
Reference in a new issue