about summary refs log tree commit diff
path: root/pkgs/tools/networking/chrony
diff options
context:
space:
mode:
authorDaniel Fox Franke <dfoxfranke@gmail.com>2015-08-08 11:07:12 -0400
committerDaniel Fox Franke <dfoxfranke@gmail.com>2015-08-08 11:07:12 -0400
commit4f700948578c10c7371e10f4d65889fec369c577 (patch)
treec58a4e980bc2c05e68324e4dbd3d39edada8e545 /pkgs/tools/networking/chrony
parent9cd4763e9c6aafe71cccee24fee51dea8242b449 (diff)
downloadnixlib-4f700948578c10c7371e10f4d65889fec369c577.tar
nixlib-4f700948578c10c7371e10f4d65889fec369c577.tar.gz
nixlib-4f700948578c10c7371e10f4d65889fec369c577.tar.bz2
nixlib-4f700948578c10c7371e10f4d65889fec369c577.tar.lz
nixlib-4f700948578c10c7371e10f4d65889fec369c577.tar.xz
nixlib-4f700948578c10c7371e10f4d65889fec369c577.tar.zst
nixlib-4f700948578c10c7371e10f4d65889fec369c577.zip
chrony: 1.31 -> 2.1.1
Diffstat (limited to 'pkgs/tools/networking/chrony')
-rw-r--r--pkgs/tools/networking/chrony/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/chrony/default.nix b/pkgs/tools/networking/chrony/default.nix
index e11fb377c210..3acf921cd794 100644
--- a/pkgs/tools/networking/chrony/default.nix
+++ b/pkgs/tools/networking/chrony/default.nix
@@ -5,11 +5,11 @@ assert stdenv.isLinux -> libcap != null;
 stdenv.mkDerivation rec {
   name = "chrony-${version}";
 
-  version = "1.31";
+  version = "2.1.1";
   
   src = fetchurl {
     url = "http://download.tuxfamily.org/chrony/${name}.tar.gz";
-    sha256 = "0vcr4hr1a01l5c3z0rgzna8rbmq35aklgfr342pi9gpc8sp1qpm3";
+    sha256 = "b0565148eaa38e971291281d76556c32f0138ec22e9784f8bceab9c65f7ad7d4";
   };
   
   buildInputs = [ readline texinfo ] ++ stdenv.lib.optional stdenv.isLinux libcap;