chrony: Tweak meta

- "repository" -> "repositories"
- reflow longDescription

+12 -3
+12 -3
pkgs/tools/networking/chrony/default.nix
··· 22 22 meta = with stdenv.lib; { 23 23 description = "Sets your computer's clock from time servers on the Net"; 24 24 homepage = http://chrony.tuxfamily.org/; 25 - repository.git = git://git.tuxfamily.org/gitroot/chrony/chrony.git; 25 + repositories.git = git://git.tuxfamily.org/gitroot/chrony/chrony.git; 26 26 license = licenses.gpl2; 27 27 platforms = with platforms; linux ++ freebsd ++ openbsd; 28 28 maintainers = with maintainers; [ rickynils fpletz ]; 29 29 30 30 longDescription = '' 31 - 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. 31 + Chronyd is a daemon which runs in background on the system. It obtains 32 + measurements via the network of the system clock’s offset relative to 33 + time servers on other systems and adjusts the system time accordingly. 34 + For isolated systems, the user can periodically enter the correct time by 35 + hand (using Chronyc). In either case, Chronyd determines the rate at 36 + which the computer gains or loses time, and compensates for this. Chronyd 37 + implements the NTP protocol and can act as either a client or a server. 32 38 33 - 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. 39 + Chronyc provides a user interface to Chronyd for monitoring its 40 + performance and configuring various settings. It can do so while running 41 + on the same computer as the Chronyd instance it is controlling or a 42 + different computer. 34 43 ''; 35 44 }; 36 45 }