summary refs log tree commit diff
path: root/pkgs/tools/networking/chrony
diff options
context:
space:
mode:
authorRicardo M. Correia <rcorreia@wizy.org>2013-05-22 00:41:58 +0200
committerRicardo M. Correia <rcorreia@wizy.org>2013-05-22 00:41:58 +0200
commite28b51360d695a68aad5fcb52b4dec1d461671ab (patch)
treea86b1570595474e1e9caad39f8d0da3ded17e9cb /pkgs/tools/networking/chrony
parentdc28cdf721d6b3c6a5be1b730745ec86f7b64de6 (diff)
downloadnixlib-e28b51360d695a68aad5fcb52b4dec1d461671ab.tar
nixlib-e28b51360d695a68aad5fcb52b4dec1d461671ab.tar.gz
nixlib-e28b51360d695a68aad5fcb52b4dec1d461671ab.tar.bz2
nixlib-e28b51360d695a68aad5fcb52b4dec1d461671ab.tar.lz
nixlib-e28b51360d695a68aad5fcb52b4dec1d461671ab.tar.xz
nixlib-e28b51360d695a68aad5fcb52b4dec1d461671ab.tar.zst
nixlib-e28b51360d695a68aad5fcb52b4dec1d461671ab.zip
Add chrony.
Chrony is a pair of programs which are used to maintain the accuracy of the system clock on a computer.
Diffstat (limited to 'pkgs/tools/networking/chrony')
-rw-r--r--pkgs/tools/networking/chrony/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/tools/networking/chrony/default.nix b/pkgs/tools/networking/chrony/default.nix
new file mode 100644
index 000000000000..96e2ecccd0ba
--- /dev/null
+++ b/pkgs/tools/networking/chrony/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "chrony-1.27";
+  
+  src = fetchurl {
+    url = "http://download.tuxfamily.org/chrony/${name}.tar.gz";
+    sha256 = "17dfhcm5mrkg8ids0ajwscryr7fm7664kz10ygsa1ac047p3aj6l";
+  };
+  
+  meta = with stdenv.lib; {
+    description = "A pair of programs which are used to maintain the accuracy of the system clock on a computer.";
+    homepage = "http://chrony.tuxfamily.org/";
+    license = licenses.gpl2;
+    platforms = platforms.unix;
+
+    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.
+
+      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.
+    '';
+  };
+}