diff options
author | Marius Bakke <marius@gnu.org> | 2020-11-28 22:39:12 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2020-11-28 22:39:12 +0100 |
commit | 4dadb4977908028bb0651d43ed4813cc988db92d (patch) | |
tree | 4647ae542d36e146fa91f728084b603dbfda6fa3 /gnu/packages/ntp.scm | |
parent | fe5c9051cc25bd81aa6c88f5de06f10ff9532441 (diff) | |
parent | e827f40479dc6b652fbb92fe8a64b50cec83731b (diff) | |
download | guix-4dadb4977908028bb0651d43ed4813cc988db92d.tar.gz |
Merge branch 'staging'
Diffstat (limited to 'gnu/packages/ntp.scm')
-rw-r--r-- | gnu/packages/ntp.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/ntp.scm b/gnu/packages/ntp.scm index 2372c6138b..95d784c62a 100644 --- a/gnu/packages/ntp.scm +++ b/gnu/packages/ntp.scm @@ -81,7 +81,7 @@ `(("pkg-config" ,pkg-config))) (inputs `(("gnutls" ,gnutls) - ("libcap" ,libcap/next) + ("libcap" ,libcap) ("libseccomp" ,libseccomp) ("nettle" ,nettle))) (home-page "https://chrony.tuxfamily.org/") @@ -144,7 +144,7 @@ time-stamping or reference clock, sub-microsecond accuracy is possible.") ;; to run as non-root (when invoked with '-u'.) ,@(if (string-suffix? "-linux" (or (%current-target-system) (%current-system))) - `(("libcap" ,libcap/next)) + `(("libcap" ,libcap)) '()))) (arguments `(#:phases |