2023-01-11 07:51:40 +00:00
|
|
|
|
{ lib, stdenv, fetchurl, pkg-config
|
|
|
|
|
, gnutls, libedit, nspr, nss, readline, texinfo
|
|
|
|
|
, libcap, libseccomp, pps-tools
|
2023-08-10 07:59:29 +00:00
|
|
|
|
, nixosTests
|
2023-01-11 07:51:40 +00:00
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "chrony";
|
2024-01-02 11:29:13 +00:00
|
|
|
|
version = "4.5";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://download.tuxfamily.org/chrony/${pname}-${version}.tar.gz";
|
2024-01-02 11:29:13 +00:00
|
|
|
|
hash = "sha256-Gf4dn0Zk1EWmmpbHHo/bYLzY3yTHPROG4CKH9zZq1CI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2023-01-11 07:51:40 +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
|
|
|
|
|
];
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
postPatch = ''
|
|
|
|
|
patchShebangs test
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
hardeningEnable = [ "pie" ];
|
|
|
|
|
|
2023-08-10 07:59:29 +00:00
|
|
|
|
passthru.tests = { inherit (nixosTests) chrony chrony-ptp; };
|
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
description = "Sets your computer's clock from time servers on the Net";
|
|
|
|
|
homepage = "https://chrony.tuxfamily.org/";
|
|
|
|
|
license = licenses.gpl2;
|
|
|
|
|
platforms = with platforms; linux ++ freebsd ++ openbsd;
|
|
|
|
|
maintainers = with maintainers; [ fpletz thoughtpolice ];
|
|
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
|
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.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
}
|