summary refs log tree commit diff
path: root/pkgs/tools/networking/chrony
diff options
context:
space:
mode:
authorRickard Nilsson <rickynils@gmail.com>2014-08-06 14:08:08 +0200
committerRickard Nilsson <rickynils@gmail.com>2014-08-06 14:08:08 +0200
commitc59a602465aba4be3980d4f029456999bc820e7b (patch)
tree39eed05db793ba7cf0465d72c13b185b64c51dac /pkgs/tools/networking/chrony
parent8efdaa0aa2486942f3bfe888a0cd13b67130b147 (diff)
downloadnixpkgs-c59a602465aba4be3980d4f029456999bc820e7b.tar
nixpkgs-c59a602465aba4be3980d4f029456999bc820e7b.tar.gz
nixpkgs-c59a602465aba4be3980d4f029456999bc820e7b.tar.bz2
nixpkgs-c59a602465aba4be3980d4f029456999bc820e7b.tar.lz
nixpkgs-c59a602465aba4be3980d4f029456999bc820e7b.tar.xz
nixpkgs-c59a602465aba4be3980d4f029456999bc820e7b.tar.zst
nixpkgs-c59a602465aba4be3980d4f029456999bc820e7b.zip
chrony: Update from 1.29.1 to 1.30
Diffstat (limited to 'pkgs/tools/networking/chrony')
-rw-r--r--pkgs/tools/networking/chrony/default.nix16
1 files changed, 11 insertions, 5 deletions
diff --git a/pkgs/tools/networking/chrony/default.nix b/pkgs/tools/networking/chrony/default.nix
index ac7055e20f2..d42d0712455 100644
--- a/pkgs/tools/networking/chrony/default.nix
+++ b/pkgs/tools/networking/chrony/default.nix
@@ -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 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.