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