Merge pull request #122458 from serokell/team-serokell

maintainers: add serokell team, move various packages to it

Changed files
+14 -5
maintainers
nixos
pkgs
servers
jetbrains
oauth2-proxy
tools
admin
acme.sh
security
+9
maintainers/team-list.nix
···
];
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.";
+
};
}
+1 -1
nixos/tests/oci-containers.nix
···
name = "oci-containers-${backend}";
meta = {
-
maintainers = with lib.maintainers; [ adisbladis benley mkaito ];
+
maintainers = with lib.maintainers; [ adisbladis benley ] ++ lib.teams.serokell.members;
};
nodes = {
+1 -1
pkgs/servers/jetbrains/youtrack.nix
···
meta = with lib; {
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
license = licenses.unfree;
};
+1 -1
pkgs/servers/oauth2-proxy/default.nix
···
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 ];
};
}
+1 -1
pkgs/tools/admin/acme.sh/default.nix
···
description = "A pure Unix shell script implementing ACME client protocol";
homepage = "https://acme.sh/";
license = licenses.gpl3;
-
maintainers = [ maintainers.yorickvp ];
+
maintainers = teams.serokell.members;
};
}
+1 -1
pkgs/tools/security/vault/vault-bin.nix
···
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 ];
};
}