Unverified Commit 05580f4b authored by Fernando Rodrigues's avatar Fernando Rodrigues
Browse files

treewide: switch instances of lib.teams.*.members to the new meta.teams attribute



Follow-up to #394797.

Signed-off-by: default avatarFernando Rodrigues <alpha@sigmasquadron.net>
parent 0587bb08
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
    description = "Modular audio codec server";
    license = licenses.gpl3Only;
    platforms = platforms.unix;
    maintainers = teams.c3d2.members;
    teams = [ teams.c3d2 ];
    mainProgram = "codecserver";
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -128,6 +128,6 @@ stdenv.mkDerivation rec {
    description = "Cross-desktop display manager";
    platforms = platforms.linux;
    license = licenses.gpl3;
    maintainers = with maintainers; [ ] ++ teams.pantheon.members;
    teams = [ teams.pantheon ];
  };
}
+2 −1
Original line number Diff line number Diff line
@@ -188,7 +188,8 @@ runCommand drvName
      # binaries are also distributed as proprietary software (unlike the
      # source-code itself).
      platforms = [ "x86_64-linux" ];
      maintainers = teams.android.members ++ (with maintainers; [ robbins ]);
      maintainers = with maintainers; [ robbins ];
      teams = [ teams.android ];
      mainProgram = pname;
    };
  }
+13 −5
Original line number Diff line number Diff line
@@ -324,11 +324,19 @@ let
          platforms = [ "x86_64-linux" ];
          maintainers =
            rec {
              stable =
                lib.teams.android.members
                ++ (with lib.maintainers; [
              stable = with lib.maintainers; [
                alapshin
                ]);
              ];
              beta = stable;
              canary = stable;
              dev = stable;
            }
            ."${channel}";
          teams =
            rec {
              stable = with lib.teams; [
                android
              ];
              beta = stable;
              canary = stable;
              dev = stable;
+2 −1
Original line number Diff line number Diff line
@@ -55,7 +55,8 @@ let
      + lib.optionalString meta.isOpenSource (
        if fromSource then " (built from source)" else " (patched binaries from jetbrains)"
      );
    maintainers = lib.teams.jetbrains.members ++ map (x: lib.maintainers."${x}") meta.maintainers;
    maintainers = map (x: lib.maintainers."${x}") meta.maintainers;
    teams = [ lib.teams.jetbrains ];
    license = if meta.isOpenSource then lib.licenses.asl20 else lib.licenses.unfree;
    sourceProvenance =
      if fromSource then
Loading