Unverified Commit 98b1e70f authored by xanderio's avatar xanderio Committed by GitHub
Browse files

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

parents 1197b296 fc7a7d27
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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
Original line number Diff line number Diff line
@@ -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
Original line number Diff line number Diff line
@@ -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
Original line number Diff line number Diff line
@@ -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";
  };
}