summary refs log tree commit diff
path: root/pkgs/tools/networking/chrony/default.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-07-23 13:36:37 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-07-23 13:36:37 +0300
commit77a73115cd3852f81c7267209bd4dcbcd19cdeb3 (patch)
tree2b6b0713c4629328180db79f2cfebada46a459fa /pkgs/tools/networking/chrony/default.nix
parenteb4d37cde264f9cd6e5d8580bd88bde5a94aadc2 (diff)
downloadnixpkgs-77a73115cd3852f81c7267209bd4dcbcd19cdeb3.tar
nixpkgs-77a73115cd3852f81c7267209bd4dcbcd19cdeb3.tar.gz
nixpkgs-77a73115cd3852f81c7267209bd4dcbcd19cdeb3.tar.bz2
nixpkgs-77a73115cd3852f81c7267209bd4dcbcd19cdeb3.tar.lz
nixpkgs-77a73115cd3852f81c7267209bd4dcbcd19cdeb3.tar.xz
nixpkgs-77a73115cd3852f81c7267209bd4dcbcd19cdeb3.tar.zst
nixpkgs-77a73115cd3852f81c7267209bd4dcbcd19cdeb3.zip
chrony: Tweak meta
- "repository" -> "repositories"
- reflow longDescription
Diffstat (limited to 'pkgs/tools/networking/chrony/default.nix')
-rw-r--r--pkgs/tools/networking/chrony/default.nix17
1 files changed, 13 insertions, 4 deletions
diff --git a/pkgs/tools/networking/chrony/default.nix b/pkgs/tools/networking/chrony/default.nix
index 38839c4b6ac..9d2afe75257 100644
--- a/pkgs/tools/networking/chrony/default.nix
+++ b/pkgs/tools/networking/chrony/default.nix
@@ -22,15 +22,24 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "Sets your computer's clock from time servers on the Net";
     homepage = http://chrony.tuxfamily.org/;
-    repository.git = git://git.tuxfamily.org/gitroot/chrony/chrony.git;
+    repositories.git = git://git.tuxfamily.org/gitroot/chrony/chrony.git;
     license = licenses.gpl2;
     platforms = with platforms; linux ++ freebsd ++ openbsd;
     maintainers = with maintainers; [ rickynils fpletz ];
 
     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.
+      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.
     '';
   };
 }