mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
teams/mercury: handle team with external membership (#478845)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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-
|
||||
];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -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";
|
||||
};
|
||||
})
|
||||
|
||||
@@ -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";
|
||||
};
|
||||
})
|
||||
|
||||
@@ -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-
|
||||
];
|
||||
};
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user