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 12:03:51 +01:00
parent 13a46d3006
commit ba2391c8d0
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -11,8 +11,8 @@ in
name = "nominatim";
meta = {
maintainers = with lib.teams; [
geospatial
ngi
geospatial.members
ngi.members
];
};
+1 -1
View File
@@ -56,7 +56,7 @@ buildGoModule (finalAttrs: {
homepage = "https://github.com/grafana/pyroscope";
changelog = "https://github.com/grafana/pyroscope/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = lib.licenses.agpl3Only;
maintainers = [ lib.teams.mercury ];
teams = [ lib.teams.mercury ];
mainProgram = "pyroscope";
};
})
@@ -74,6 +74,6 @@ buildPythonPackage rec {
description = "Python interface to R";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
maintainers = with lib; [ teams.sage ];
teams = with lib.teams; [ sage ];
};
}
@@ -43,7 +43,7 @@ stdenv.mkDerivation {
meta = {
description = "Test that frugally-deep can load MIOpen model files";
maintainers = with lib.teams; [ rocm ];
teams = with lib.teams; [ rocm ];
platforms = lib.platforms.linux;
};
}