teams/mercury: handle team with external membership (#478845)

This commit is contained in:
Wolfgang Walther
2026-01-18 14:17:32 +00:00
committed by GitHub
5 changed files with 17 additions and 17 deletions

View File

@@ -539,18 +539,6 @@ with lib.maintainers;
shortName = "Matrix";
};
mercury = {
members = [
_9999years
Gabriella439
curran
lf-
jkachmar
];
scope = "Group registry for packages maintained by Mercury";
shortName = "Mercury Employees";
};
minimal-bootstrap = {
members = [
alejandrosame

View File

@@ -52,6 +52,9 @@ buildGoModule (finalAttrs: {
description = "Tail-sampling proxy for OpenTelemetry";
mainProgram = "refinery";
license = lib.licenses.asl20;
teams = [ lib.teams.mercury ];
maintainers = with lib.maintainers; [
jkachmar
lf-
];
};
})

View File

@@ -55,7 +55,10 @@ buildGoModule (finalAttrs: {
homepage = "https://github.com/grafana/pyroscope";
changelog = "https://github.com/grafana/pyroscope/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = lib.licenses.agpl3Only;
teams = [ lib.teams.mercury ];
maintainers = with lib.maintainers; [
jkachmar
lf-
];
mainProgram = "pyroscope";
};
})

View File

@@ -69,7 +69,9 @@ buildGoModule (finalAttrs: {
homepage = "https://www.github.com/temporalio/tcld";
changelog = "https://github.com/temporalio/tcld/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
teams = [ lib.teams.mercury ];
maintainers = with lib.maintainers; [
jkachmar
];
mainProgram = "tcld";
};
})

View File

@@ -33,7 +33,11 @@ let
}) temporary;
in
temporary-incremental-build.overrideAttrs (old: {
meta = {
teams = [ lib.teams.mercury ];
meta = old.meta // {
maintainers = old.meta.maintainers or [ ] ++ [
lib.maintainers._9999years
lib.maintainers.Gabriella439
lib.maintainers.lf-
];
};
})