Merge pull request #122458 from serokell/team-serokell

maintainers: add serokell team, move various packages to it
This commit is contained in:
Robert Hensing 2021-05-16 22:37:50 +02:00 committed by GitHub
commit 338baef861
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 5 deletions

View File

@ -178,4 +178,13 @@ with lib.maintainers; {
]; ];
scope = "Maintain SageMath and the dependencies that are likely to break it."; scope = "Maintain SageMath and the dependencies that are likely to break it.";
}; };
serokell = {
# Verify additions by approval of an already existing member of the team.
members = [
balsoft
mkaito
];
scope = "Group registration for Serokell employees who collectively maintain packages.";
};
} }

View File

@ -12,7 +12,7 @@ let
name = "oci-containers-${backend}"; name = "oci-containers-${backend}";
meta = { meta = {
maintainers = with lib.maintainers; [ adisbladis benley mkaito ]; maintainers = with lib.maintainers; [ adisbladis benley ] ++ lib.teams.serokell.members;
}; };
nodes = { nodes = {

View File

@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
meta = with lib; { meta = with lib; {
description = "Issue tracking and project management tool for developers"; description = "Issue tracking and project management tool for developers";
maintainers = with maintainers; [ yorickvp ]; maintainers = teams.serokell.members;
# https://www.jetbrains.com/youtrack/buy/license.html # https://www.jetbrains.com/youtrack/buy/license.html
license = licenses.unfree; license = licenses.unfree;
}; };

View File

@ -20,6 +20,6 @@ buildGoModule rec {
description = "A reverse proxy that provides authentication with Google, Github, or other providers"; description = "A reverse proxy that provides authentication with Google, Github, or other providers";
homepage = "https://github.com/oauth2-proxy/oauth2-proxy/"; homepage = "https://github.com/oauth2-proxy/oauth2-proxy/";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ yorickvp knl ]; maintainers = with maintainers; teams.serokell.members ++ [ knl ];
}; };
} }

View File

@ -31,6 +31,6 @@ stdenv.mkDerivation rec {
description = "A pure Unix shell script implementing ACME client protocol"; description = "A pure Unix shell script implementing ACME client protocol";
homepage = "https://acme.sh/"; homepage = "https://acme.sh/";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = [ maintainers.yorickvp ]; maintainers = teams.serokell.members;
}; };
} }

View File

@ -49,6 +49,6 @@ in stdenv.mkDerivation {
description = "A tool for managing secrets, this binary includes the UI"; description = "A tool for managing secrets, this binary includes the UI";
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ]; platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ];
license = licenses.mpl20; license = licenses.mpl20;
maintainers = with maintainers; [ offline psyanticy mkaito Chili-Man ]; maintainers = with maintainers; teams.serokell.members ++ [ offline psyanticy Chili-Man ];
}; };
} }