2017-01-26 00:25:28 +00:00
|
|
|
|
{ stdenv, fetchurl, pkgconfig, libcap, readline, texinfo, nss, nspr
|
2020-10-30 20:37:32 +00:00
|
|
|
|
, libseccomp, pps-tools, gnutls }:
|
2013-05-23 03:11:21 +01:00
|
|
|
|
|
|
|
|
|
assert stdenv.isLinux -> libcap != null;
|
2013-05-21 23:41:58 +01:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
|
pname = "chrony";
|
2020-10-30 20:37:32 +00:00
|
|
|
|
version = "4.0";
|
2015-02-27 21:53:01 +00:00
|
|
|
|
|
2013-05-21 23:41:58 +01:00
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
|
url = "https://download.tuxfamily.org/chrony/${pname}-${version}.tar.gz";
|
2020-10-30 20:37:32 +00:00
|
|
|
|
sha256 = "09f6w2x5h5kamb4rhcbaz911q1f730qdalgsn8s48yjyqlafl9xy";
|
2013-05-21 23:41:58 +01:00
|
|
|
|
};
|
2015-02-27 21:53:01 +00:00
|
|
|
|
|
2018-08-08 22:36:52 +01:00
|
|
|
|
postPatch = ''
|
|
|
|
|
patchShebangs test
|
|
|
|
|
'';
|
|
|
|
|
|
2020-10-30 20:37:32 +00:00
|
|
|
|
buildInputs = [ readline texinfo nss nspr gnutls ]
|
2018-07-04 12:28:07 +01:00
|
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ libcap libseccomp pps-tools ];
|
2015-07-12 04:58:29 +01:00
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2013-05-23 03:11:21 +01:00
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
|
hardeningEnable = [ "pie" ];
|
2016-02-26 17:54:46 +00:00
|
|
|
|
|
2017-01-26 00:25:28 +00:00
|
|
|
|
configureFlags = [ "--chronyvardir=$(out)/var/lib/chrony" ]
|
2019-11-20 09:17:54 +00:00
|
|
|
|
++ stdenv.lib.optional stdenv.isLinux "--enable-scfilter";
|
2013-12-04 04:11:41 +00:00
|
|
|
|
|
2013-05-21 23:41:58 +01:00
|
|
|
|
meta = with stdenv.lib; {
|
2013-10-05 15:22:46 +01:00
|
|
|
|
description = "Sets your computer's clock from time servers on the Net";
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://chrony.tuxfamily.org/";
|
|
|
|
|
repositories.git = "git://git.tuxfamily.org/gitroot/chrony/chrony.git";
|
2013-05-21 23:41:58 +01:00
|
|
|
|
license = licenses.gpl2;
|
2014-08-10 09:59:21 +01:00
|
|
|
|
platforms = with platforms; linux ++ freebsd ++ openbsd;
|
2018-12-01 18:55:31 +00:00
|
|
|
|
maintainers = with maintainers; [ fpletz thoughtpolice ];
|
2013-05-21 23:41:58 +01:00
|
|
|
|
|
|
|
|
|
longDescription = ''
|
2016-07-23 11:36:37 +01: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 23:41:58 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
}
|