chrony: Update from 1.29.1 to 1.30

This commit is contained in:
Rickard Nilsson 2014-08-06 14:08:08 +02:00
parent 8efdaa0aa2
commit c59a602465

View File

@ -1,18 +1,23 @@
{ stdenv, fetchurl, libcap, readline }:
{ stdenv, fetchurl, libcap, readline, texinfo }:
assert stdenv.isLinux -> libcap != null;
stdenv.mkDerivation rec {
name = "chrony-1.29.1";
name = "chrony-${version}";
version = "1.30";
src = fetchurl {
url = "http://download.tuxfamily.org/chrony/${name}.tar.gz";
sha256 = "09xgcmh9yrprsazsrm3bm0xl3y75csi9lhh815yyrn68v2s9p335";
sha256 = "1pa6629nigcv95x2q9dnmzlrwhicxizq9z7ggy2c9cmyl1bakb23";
};
buildInputs = [ readline ] ++ stdenv.lib.optional stdenv.isLinux libcap;
buildInputs = [ readline texinfo ] ++ stdenv.lib.optional stdenv.isLinux libcap;
configureFlags = [ "--sysconfdir=\$(out)/etc" "--chronyvardir=\$(out)/var/lib/chrony" ];
configureFlags = [
"--sysconfdir=$(out)/etc"
"--chronyvardir=$(out)/var/lib/chrony"
];
meta = with stdenv.lib; {
description = "Sets your computer's clock from time servers on the Net";
@ -20,6 +25,7 @@ stdenv.mkDerivation rec {
repository.git = git://git.tuxfamily.org/gitroot/chrony/chrony.git;
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = [ maintainers.rickynils ];
longDescription = ''
Chronyd is a daemon which runs in background on the system. It obtains measurements via the network of the system clocks 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.