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"; shortName = "Mercury Employees";
}; };
# same as https://github.com/orgs/NixOS/teams/nix-team
nix = { nix = {
members = [ members = [
eelco eelco
grahamc mic92
pierron tomberek
roberth
ericson2314
]; ];
scope = "Maintain the Nix package manager."; scope = "Maintain the Nix package manager.";
shortName = "Nix/nix-cli ecosystem"; shortName = "Nix/nix-cli ecosystem";

View file

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