Unverified Commit b2c11f1b authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

teams/cachix: handle team with external membership (#478788)

parents bf09af59 16c2a249
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -154,16 +154,6 @@ with lib.maintainers;
    shortName = "c3d2";
  };

  cachix = {
    # Verify additions to this team with at least one existing member of the team.
    members = [
      domenkozar
      sandydoo
    ];
    scope = "Group registration for packages maintained by Cachix.";
    shortName = "Cachix employees";
  };

  categorization = {
    github = "categorization";
  };
+4 −1
Original line number Diff line number Diff line
@@ -8,7 +8,10 @@ let
  cfg = config.services.cachix-agent;
in
{
  meta.maintainers = lib.teams.cachix.members;
  meta.maintainers = with lib.maintainers; [
    domenkozar
    sandydoo
  ];

  options.services.cachix-agent = {
    enable = lib.mkEnableOption "Cachix Deploy Agent: <https://docs.cachix.org/deploy/>";
+5 −1
Original line number Diff line number Diff line
@@ -9,7 +9,11 @@ let
in
{
  meta = {
    maintainers = lib.teams.cachix.members ++ [ lib.maintainers.jfroche ];
    maintainers = with lib.maintainers; [
      domenkozar
      jfroche
      sandydoo
    ];
  };

  options.services.cachix-watch-store = {
+4 −1
Original line number Diff line number Diff line
@@ -128,6 +128,9 @@ rustPlatform.buildRustPackage {
    homepage = "https://github.com/cachix/devenv";
    license = lib.licenses.asl20;
    mainProgram = "devenv";
    teams = [ lib.teams.cachix ];
    maintainers = with lib.maintainers; [
      domenkozar
      sandydoo
    ];
  };
}
+4 −1
Original line number Diff line number Diff line
@@ -27,7 +27,10 @@ rustPlatform.buildRustPackage (finalAttrs: {
    description = "Declarative secrets, every environment, any provider";
    homepage = "https://secretspec.dev";
    license = with lib.licenses; [ asl20 ];
    teams = [ lib.teams.cachix ];
    maintainers = with lib.maintainers; [
      domenkozar
      sandydoo
    ];
    mainProgram = "secretspec";
  };
})