2017-01-26 00:25:28 +00:00
|
|
|
|
{ stdenv, fetchurl, pkgconfig, libcap, readline, texinfo, nss, nspr
|
2018-07-04 11:28:07 +00:00
|
|
|
|
, libseccomp, pps-tools }:
|
2013-05-23 02:11:21 +00:00
|
|
|
|
|
|
|
|
|
assert stdenv.isLinux -> libcap != null;
|
2013-05-21 22:41:58 +00:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-08-06 12:08:08 +00:00
|
|
|
|
name = "chrony-${version}";
|
|
|
|
|
|
2018-04-11 07:28:41 +00:00
|
|
|
|
version = "3.3";
|
2015-02-27 21:53:01 +00:00
|
|
|
|
|
2013-05-21 22:41:58 +00:00
|
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
|
url = "https://download.tuxfamily.org/chrony/${name}.tar.gz";
|
2018-04-11 07:28:41 +00:00
|
|
|
|
sha256 = "0a1ilzr88xhzx1ql3xhn36a4rvl79hvp0dvgm3az4cjhhzav47qd";
|
2013-05-21 22:41:58 +00:00
|
|
|
|
};
|
2015-02-27 21:53:01 +00:00
|
|
|
|
|
2017-01-26 00:25:28 +00:00
|
|
|
|
buildInputs = [ readline texinfo nss nspr ]
|
2018-07-04 11:28:07 +00:00
|
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ libcap libseccomp pps-tools ];
|
2015-07-12 03:58:29 +00:00
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2013-05-23 02:11:21 +00: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 22:41:58 +00:00
|
|
|
|
meta = with stdenv.lib; {
|
2013-10-05 14:22:46 +00:00
|
|
|
|
description = "Sets your computer's clock from time servers on the Net";
|
2017-06-19 23:58:15 +00:00
|
|
|
|
homepage = https://chrony.tuxfamily.org/;
|
2016-07-23 10:36:37 +00:00
|
|
|
|
repositories.git = git://git.tuxfamily.org/gitroot/chrony/chrony.git;
|
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;
|
2015-07-12 03:59:53 +00:00
|
|
|
|
maintainers = with maintainers; [ rickynils fpletz ];
|
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
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
}
|