nixos/{chrony,ntpd,openntpd}: add myself as maintainer

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2018-12-01 12:55:31 -06:00
parent a61e94329f
commit f0ad5ebdfb
6 changed files with 7 additions and 3 deletions

View File

@ -76,6 +76,8 @@ in
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
meta.maintainers = with lib.maintainers; [ thoughtpolice ];
environment.systemPackages = [ pkgs.chrony ]; environment.systemPackages = [ pkgs.chrony ];
users.groups = singleton users.groups = singleton

View File

@ -96,6 +96,7 @@ in
###### implementation ###### implementation
config = mkIf config.services.ntp.enable { config = mkIf config.services.ntp.enable {
meta.maintainers = with lib.maintainers; [ thoughtpolice ];
# Make tools such as ntpq available in the system path. # Make tools such as ntpq available in the system path.
environment.systemPackages = [ pkgs.ntp ]; environment.systemPackages = [ pkgs.ntp ];

View File

@ -52,6 +52,7 @@ in
###### implementation ###### implementation
config = mkIf cfg.enable { config = mkIf cfg.enable {
meta.maintainers = with lib.maintainers; [ thoughtpolice ];
services.timesyncd.enable = mkForce false; services.timesyncd.enable = mkForce false;
# Add ntpctl to the environment for status checking # Add ntpctl to the environment for status checking

View File

@ -5,7 +5,6 @@ assert stdenv.isLinux -> libcap != null;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "chrony"; pname = "chrony";
version = "3.5"; version = "3.5";
src = fetchurl { src = fetchurl {
@ -32,7 +31,7 @@ stdenv.mkDerivation rec {
repositories.git = git://git.tuxfamily.org/gitroot/chrony/chrony.git; repositories.git = git://git.tuxfamily.org/gitroot/chrony/chrony.git;
license = licenses.gpl2; license = licenses.gpl2;
platforms = with platforms; linux ++ freebsd ++ openbsd; platforms = with platforms; linux ++ freebsd ++ openbsd;
maintainers = with maintainers; [ fpletz ]; maintainers = with maintainers; [ fpletz thoughtpolice ];
longDescription = '' longDescription = ''
Chronyd is a daemon which runs in background on the system. It obtains Chronyd is a daemon which runs in background on the system. It obtains

View File

@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
# very close to isc and bsd2 # very close to isc and bsd2
url = https://www.eecis.udel.edu/~mills/ntp/html/copyright.html; url = https://www.eecis.udel.edu/~mills/ntp/html/copyright.html;
}; };
maintainers = [ maintainers.eelco ]; maintainers = with maintainers; [ eelco thoughtpolice ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }

View File

@ -37,5 +37,6 @@ stdenv.mkDerivation rec {
license = licenses.bsd3; license = licenses.bsd3;
description = "OpenBSD NTP daemon (Debian port)"; description = "OpenBSD NTP daemon (Debian port)";
platforms = platforms.all; platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice ];
}; };
} }