Unverified Commit dac36fa9 authored by Morgan Jones's avatar Morgan Jones Committed by GitHub
Browse files

treewide: switch instances of lib.teams.*.members to the new meta.teams attribute (#400458)

parents 077e0662 50063b9f
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -263,3 +263,6 @@ a4f7e161b380b35b2f7bc432659a95fd71254ad8

# nix-builder-vm: nixfmt-rfc-style
a034fb50f79816c6738fb48b48503b09ea3b0132

# treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
05580f4b4433fda48fff30f60dfd303d6ee05d21
+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;
Loading