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:
@@ -11,8 +11,8 @@ in
|
||||
name = "nominatim";
|
||||
meta = {
|
||||
maintainers = with lib.teams; [
|
||||
geospatial
|
||||
ngi
|
||||
geospatial.members
|
||||
ngi.members
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user