about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-06-20 01:58:15 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2017-06-20 03:45:42 +0200
commited71a3a6785a9901e59bda5118e1f9a1fa341acc (patch)
tree40f285548eb0eb92f9cb3783238d41b249d61b94
parent735dcc1a27d471a98acf2e5fcb4d9b5a0e995ca1 (diff)
downloadnixlib-ed71a3a6785a9901e59bda5118e1f9a1fa341acc.tar
nixlib-ed71a3a6785a9901e59bda5118e1f9a1fa341acc.tar.gz
nixlib-ed71a3a6785a9901e59bda5118e1f9a1fa341acc.tar.bz2
nixlib-ed71a3a6785a9901e59bda5118e1f9a1fa341acc.tar.lz
nixlib-ed71a3a6785a9901e59bda5118e1f9a1fa341acc.tar.xz
nixlib-ed71a3a6785a9901e59bda5118e1f9a1fa341acc.tar.zst
nixlib-ed71a3a6785a9901e59bda5118e1f9a1fa341acc.zip
chrony: 3.0 -> 3.1
-rw-r--r--pkgs/tools/networking/chrony/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/chrony/default.nix b/pkgs/tools/networking/chrony/default.nix
index 32a8ca5f99e8..b805a4bfcf32 100644
--- a/pkgs/tools/networking/chrony/default.nix
+++ b/pkgs/tools/networking/chrony/default.nix
@@ -6,11 +6,11 @@ assert stdenv.isLinux -> libcap != null;
 stdenv.mkDerivation rec {
   name = "chrony-${version}";
 
-  version = "3.0";
+  version = "3.1";
 
   src = fetchurl {
     url = "http://download.tuxfamily.org/chrony/${name}.tar.gz";
-    sha256 = "0vfdsajz2w6b7c94rxrj7fsr234jryhl2rbdlmb7h10gla8pnf50";
+    sha256 = "0xb03dya1zhcn1gch2v2ynifxw95g8m3plr9q4ys0s3pvgf0g4cx";
   };
 
   buildInputs = [ readline texinfo nss nspr ]
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "Sets your computer's clock from time servers on the Net";
-    homepage = http://chrony.tuxfamily.org/;
+    homepage = https://chrony.tuxfamily.org/;
     repositories.git = git://git.tuxfamily.org/gitroot/chrony/chrony.git;
     license = licenses.gpl2;
     platforms = with platforms; linux ++ freebsd ++ openbsd;