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