team-list: add bazel team

(refactor)

We are going to set up a maintenance team for bazel & tools.
main
Profpatsch 3 years ago
parent a15b2e876b
commit 5238c41fa0
  1. 7
      maintainers/team-list.nix
  2. 2
      pkgs/development/tools/build-managers/bazel/bazel-remote/default.nix
  3. 2
      pkgs/development/tools/build-managers/bazel/bazel_0_29/default.nix
  4. 2
      pkgs/development/tools/build-managers/bazel/bazel_1/default.nix
  5. 2
      pkgs/development/tools/build-managers/bazel/bazel_3/default.nix
  6. 2
      pkgs/development/tools/build-managers/bazel/bazel_4/default.nix
  7. 4
      pkgs/development/tools/build-managers/bazel/buildtools/default.nix

@ -29,6 +29,13 @@ with lib.maintainers; {
scope = "Maintain ACME-related packages and modules.";
};
bazel = {
members = [
mboes
];
scope = "Bazel build tool & related tools https://bazel.build/";
};
beam = {
members = [
ankhers

@ -22,7 +22,7 @@ buildGoModule rec {
homepage = "https://github.com/buchgr/bazel-remote";
description = "A remote HTTP/1.1 cache for Bazel";
license = licenses.asl20;
maintainers = [ maintainers.uri-canva ];
maintainers = lib.teams.bazel.members;
platforms = platforms.darwin ++ platforms.linux;
};
}

@ -149,7 +149,7 @@ stdenv'.mkDerivation rec {
homepage = "https://github.com/bazelbuild/bazel/";
description = "Build tool that builds code quickly and reliably";
license = licenses.asl20;
maintainers = [ maintainers.mboes ];
maintainers = lib.teams.bazel.members;
inherit platforms;
};

@ -150,7 +150,7 @@ stdenv'.mkDerivation rec {
homepage = "https://github.com/bazelbuild/bazel/";
description = "Build tool that builds code quickly and reliably";
license = licenses.asl20;
maintainers = [ maintainers.mboes ];
maintainers = lib.teams.bazel.members;
inherit platforms;
};

@ -164,7 +164,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/bazelbuild/bazel/";
description = "Build tool that builds code quickly and reliably";
license = licenses.asl20;
maintainers = [ maintainers.mboes ];
maintainers = lib.teams.bazel.members;
inherit platforms;
};

@ -177,7 +177,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/bazelbuild/bazel/";
description = "Build tool that builds code quickly and reliably";
license = licenses.asl20;
maintainers = [ maintainers.mboes ];
maintainers = lib.teams.bazel.members;
inherit platforms;
};

@ -27,6 +27,8 @@ buildGoModule rec {
description = "Tools for working with Google's bazel buildtool. Includes buildifier, buildozer, and unused_deps";
homepage = "https://github.com/bazelbuild/buildtools";
license = licenses.asl20;
maintainers = with maintainers; [ elasticdog uri-canva marsam ];
maintainers = with maintainers;
[ elasticdog uri-canva marsam ]
++ lib.teams.bazel.members;
};
}

Loading…
Cancel
Save