various: fix maintainer teams

The maintainers field currently expects actual maintainers only, not
entire teams. These can be added via `meta.teams` or via
`<team>.members` for NixOS tests, which don't support teams, yet.
This commit is contained in:
Wolfgang Walther
2025-10-30 09:54:57 +01:00
parent 13a46d3006
commit ba2391c8d0
4 changed files with 5 additions and 5 deletions

View File

@@ -11,8 +11,8 @@ in
name = "nominatim"; name = "nominatim";
meta = { meta = {
maintainers = with lib.teams; [ maintainers = with lib.teams; [
geospatial geospatial.members
ngi ngi.members
]; ];
}; };

View File

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

View File

@@ -74,6 +74,6 @@ buildPythonPackage rec {
description = "Python interface to R"; description = "Python interface to R";
license = lib.licenses.gpl2Plus; license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix; platforms = lib.platforms.unix;
maintainers = with lib; [ teams.sage ]; teams = with lib.teams; [ sage ];
}; };
} }

View File

@@ -43,7 +43,7 @@ stdenv.mkDerivation {
meta = { meta = {
description = "Test that frugally-deep can load MIOpen model files"; description = "Test that frugally-deep can load MIOpen model files";
maintainers = with lib.teams; [ rocm ]; teams = with lib.teams; [ rocm ];
platforms = lib.platforms.linux; platforms = lib.platforms.linux;
}; };
} }