Add ctrl-os team to team list (#460921)

This commit is contained in:
xanderio
2025-11-12 13:41:34 +00:00
committed by GitHub
4 changed files with 20 additions and 3 deletions
+6
View File
@@ -16743,6 +16743,12 @@
github = "merrkry";
githubId = 124278440;
};
messemar = {
email = "martin.messer@cyberus-technology.de";
name = "messemar";
github = "messemar";
githubId = 22659757;
};
metalmatze = {
email = "matthias.loibl@polarsignals.com";
name = "Matthias Loibl";
+12 -1
View File
@@ -226,6 +226,18 @@ with lib.maintainers;
shortName = "Cosmopolitan";
};
ctrl-os = {
# Existing members may approve additions.
members = [
blitz
messemar
flyfloh
];
scope = "Team of Cyberus Technology employees that maintain packages relevant to CTRL-OS";
shortName = "CTRL-OS";
};
cuda = {
github = "cuda-maintainers";
};
@@ -234,7 +246,6 @@ with lib.maintainers;
# Verify additions by approval of an already existing member of the team.
members = [
xanderio
blitz
snu
e1mo
];
+1 -1
View File
@@ -34,7 +34,7 @@ buildDotnetModule rec {
homepage = "https://github.com/CycloneDX/cyclonedx-cli";
changelog = "https://github.com/CycloneDX/cyclonedx-cli/releases/tag/v${version}";
maintainers = with lib.maintainers; [ thillux ];
teams = [ lib.teams.cyberus ];
teams = [ lib.teams.ctrl-os ];
license = lib.licenses.asl20;
platforms = with lib.platforms; (linux ++ darwin);
mainProgram = "cyclonedx";
+1 -1
View File
@@ -37,7 +37,7 @@ python3Packages.buildPythonApplication rec {
homepage = "https://github.com/CycloneDX/cyclonedx-python";
changelog = "https://github.com/CycloneDX/cyclonedx-python/releases/tag/${src.tag}";
license = lib.licenses.asl20;
teams = [ lib.teams.cyberus ];
teams = [ lib.teams.ctrl-os ];
mainProgram = "cyclonedx-py";
};
}