maintainers: add serokell team, move various packages to it

master
Yorick van Pelt 2021-05-08 12:11:48 +02:00
parent 080cd658ca
commit 87f11f84b2
No known key found for this signature in database
GPG Key ID: D8D3CC6D951384DE
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.";
};
serokell = {
# Verify additions by checking commit signature from 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}";
meta = {
maintainers = with lib.maintainers; [ adisbladis benley mkaito ];
maintainers = with lib.maintainers; [ adisbladis benley ] ++ lib.teams.serokell.members;
};
nodes = {

View File

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

View File

@ -20,6 +20,6 @@ buildGoModule rec {
description = "A reverse proxy that provides authentication with Google, Github, or other providers";
homepage = "https://github.com/oauth2-proxy/oauth2-proxy/";
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";
homepage = "https://acme.sh/";
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";
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ];
license = licenses.mpl20;
maintainers = with maintainers; [ offline psyanticy mkaito Chili-Man ];
maintainers = with maintainers; teams.serokell.members ++ [ offline psyanticy Chili-Man ];
};
}