2023-01-02 12:12:47 +00:00
|
|
|
|
{ lib, stdenv, fetchurl, pkg-config
|
|
|
|
|
, gnutls, libedit, nspr, nss, readline, texinfo
|
|
|
|
|
, libcap, libseccomp, pps-tools
|
|
|
|
|
}:
|
2013-05-23 02:11:21 +00:00
|
|
|
|
|
2013-05-21 22:41:58 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
|
pname = "chrony";
|
2022-09-03 04:18:40 +00:00
|
|
|
|
version = "4.3";
|
2015-02-27 21:53:01 +00:00
|
|
|
|
|
2013-05-21 22:41:58 +00:00
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
|
url = "https://download.tuxfamily.org/chrony/${pname}-${version}.tar.gz";
|
2023-01-02 12:12:47 +00:00
|
|
|
|
hash = "sha256-nQ2oiahl8ImlohYQ/7ZxPjyUOM4wOmO0nC+26v9biAQ=";
|
2013-05-21 22:41:58 +00:00
|
|
|
|
};
|
2015-02-27 21:53:01 +00:00
|
|
|
|
|
2023-01-02 12:12:47 +00:00
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
|
|
|
|
|
buildInputs = [ gnutls libedit nspr nss readline texinfo ]
|
|
|
|
|
++ lib.optionals stdenv.isLinux [ libcap libseccomp pps-tools ];
|
|
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
|
"--enable-ntp-signd"
|
|
|
|
|
"--sbindir=$(out)/bin"
|
|
|
|
|
"--chronyrundir=/run/chrony"
|
|
|
|
|
] ++ lib.optional stdenv.isLinux "--enable-scfilter";
|
|
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
|
# Cleanup the installation script
|
|
|
|
|
./makefile.patch
|
|
|
|
|
];
|
|
|
|
|
|
2018-08-08 21:36:52 +00:00
|
|
|
|
postPatch = ''
|
|
|
|
|
patchShebangs test
|
|
|
|
|
'';
|
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
|
hardeningEnable = [ "pie" ];
|
2016-02-26 17:54:46 +00:00
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
|
meta = with lib; {
|
2013-10-05 14:22:46 +00:00
|
|
|
|
description = "Sets your computer's clock from time servers on the Net";
|
2020-04-01 01:11:51 +00:00
|
|
|
|
homepage = "https://chrony.tuxfamily.org/";
|
2013-05-21 22:41:58 +00:00
|
|
|
|
license = licenses.gpl2;
|
2014-08-10 08:59:21 +00:00
|
|
|
|
platforms = with platforms; linux ++ freebsd ++ openbsd;
|
2018-12-01 18:55:31 +00:00
|
|
|
|
maintainers = with maintainers; [ fpletz thoughtpolice ];
|
2013-05-21 22:41:58 +00:00
|
|
|
|
|
|
|
|
|
longDescription = ''
|
2016-07-23 10:36:37 +00:00
|
|
|
|
Chronyd is a daemon which runs in background on the system. It obtains
|
|
|
|
|
measurements via the network of the system clock’s offset relative to
|
|
|
|
|
time servers on other systems and adjusts the system time accordingly.
|
|
|
|
|
For isolated systems, the user can periodically enter the correct time by
|
|
|
|
|
hand (using Chronyc). In either case, Chronyd determines the rate at
|
|
|
|
|
which the computer gains or loses time, and compensates for this. Chronyd
|
|
|
|
|
implements the NTP protocol and can act as either a client or a server.
|
|
|
|
|
|
|
|
|
|
Chronyc provides a user interface to Chronyd for monitoring its
|
|
|
|
|
performance and configuring various settings. It can do so while running
|
|
|
|
|
on the same computer as the Chronyd instance it is controlling or a
|
|
|
|
|
different computer.
|
2013-05-21 22:41:58 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
}
|