2017-01-26 00:25:28 +00:00
|
|
|
|
{ stdenv, fetchurl, pkgconfig, libcap, readline, texinfo, nss, nspr
|
2018-07-04 12:28:07 +01:00
|
|
|
|
, libseccomp, pps-tools }:
|
2013-05-23 03:11:21 +01:00
|
|
|
|
|
|
|
|
|
assert stdenv.isLinux -> libcap != null;
|
2013-05-21 23:41:58 +01:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-08-06 13:08:08 +01:00
|
|
|
|
name = "chrony-${version}";
|
|
|
|
|
|
2018-09-21 01:36:53 +01:00
|
|
|
|
version = "3.4";
|
2015-02-27 21:53:01 +00:00
|
|
|
|
|
2013-05-21 23:41:58 +01:00
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
|
url = "https://download.tuxfamily.org/chrony/${name}.tar.gz";
|
2018-09-21 01:36:53 +01:00
|
|
|
|
sha256 = "17vb1sy79lsjif23v66mgn39lbgmxy59mf7mi9ffb9qh4ryf8xxg";
|
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
|
|
|
|
|
'';
|
|
|
|
|
|
2017-01-26 00:25:28 +00:00
|
|
|
|
buildInputs = [ readline texinfo nss nspr ]
|
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" ]
|
|
|
|
|
++ 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";
|
2017-06-20 00:58:15 +01:00
|
|
|
|
homepage = https://chrony.tuxfamily.org/;
|
2016-07-23 11:36:37 +01:00
|
|
|
|
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;
|
2015-07-12 04:59:53 +01:00
|
|
|
|
maintainers = with maintainers; [ rickynils fpletz ];
|
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
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
}
|