nix: add nix team as maintainers for nix

This commit is contained in:
Jörg Thalheim 2025-03-26 09:17:19 +01:00
parent 187fb6354b
commit 2681649b3e
2 changed files with 6 additions and 3 deletions

View file

@ -816,11 +816,14 @@ with lib.maintainers;
shortName = "Mercury Employees";
};
# same as https://github.com/orgs/NixOS/teams/nix-team
nix = {
members = [
eelco
grahamc
pierron
mic92
tomberek
roberth
ericson2314
];
scope = "Maintain the Nix package manager.";
shortName = "Nix/nix-cli ecosystem";

View file

@ -5,7 +5,7 @@
, hash ? null
, src ? fetchFromGitHub { owner = "NixOS"; repo = "nix"; rev = version; inherit hash; }
, patches ? [ ]
, maintainers ? with lib.maintainers; [ eelco lovesegfault artturin ]
, maintainers ? lib.teams.nix.members ++ [ lib.maintainers.lovesegfault lib.maintainers.artturin ]
, self_attribute_name
}@args:
assert (hash == null) -> (src != null);