mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
chrony: Tweak meta
- "repository" -> "repositories" - reflow longDescription
This commit is contained in:
parent
eb4d37cde2
commit
77a73115cd
1 changed files with 12 additions and 3 deletions
|
@ -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.
|
||||
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.
|
||||
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.
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue