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

teams/lumiguide: handle team with external membership (#478825)

parents 5f3cf79c 93987bd8
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -22686,12 +22686,6 @@
    githubId = 53882428;
    name = "Erik Rodriguez";
  };
  roelvandijk = {
    email = "roel@lambdacube.nl";
    github = "roelvandijk";
    githubId = 710906;
    name = "Roel van Dijk";
  };
  rogarb = {
    email = "rogarb@rgarbage.fr";
    github = "rogarb";
+0 −10
Original line number Diff line number Diff line
@@ -531,16 +531,6 @@ with lib.maintainers;
    enableFeatureFreezePing = true;
  };

  lumiguide = {
    # Verify additions by approval of an already existing member of the team.
    members = [
      roelvandijk
      lucus16
    ];
    scope = "Group registration for LumiGuide employees who collectively maintain packages.";
    shortName = "Lumiguide employees";
  };

  lumina = {
    github = "lumina";
    enableFeatureFreezePing = true;
+0 −4
Original line number Diff line number Diff line
@@ -177,8 +177,4 @@ in
      };
    };
  };

  meta = {
    maintainers = with lib.maintainers; [ roelvandijk ];
  };
}
+0 −1
Original line number Diff line number Diff line
@@ -119,7 +119,6 @@ python3Packages.buildPythonApplication rec {
      dezgeg
      dotlambda
    ];
    teams = [ lib.teams.lumiguide ];
    platforms = with lib.platforms; linux ++ darwin;
    mainProgram = "esptool";
  };
+1 −1
Original line number Diff line number Diff line
@@ -108,7 +108,7 @@ stdenv.mkDerivation {

  meta = {
    homepage = "https://www.picotech.com/downloads/linux";
    maintainers = with lib.maintainers; [ wirew0rm ] ++ lib.teams.lumiguide.members;
    maintainers = with lib.maintainers; [ wirew0rm ];
    platforms = [ "x86_64-linux" ];
    license = lib.licenses.unfree;
    sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
Loading