From 10ac558ca10c11019d07f1fda8f9406a0642e81d Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sun, 27 Oct 2019 22:44:24 +0100 Subject: lib: Add lib.teams Also add a freedesktop maintainer group as an example. --- maintainers/team-list.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 maintainers/team-list.nix (limited to 'maintainers/team-list.nix') diff --git a/maintainers/team-list.nix b/maintainers/team-list.nix new file mode 100644 index 0000000000000..f98bbeee912e2 --- /dev/null +++ b/maintainers/team-list.nix @@ -0,0 +1,24 @@ +/* List of maintainer teams. + name = { + # Required + members = [ maintainer1 maintainer2 ]; + scope = "Maintain foo packages."; + }; + + where + + - `members` is the list of maintainers belonging to the group, + - `scope` describes the scope of the group. + + More fields may be added in the future. + + Please keep the list alphabetically sorted. + */ + +{ lib }: +with lib.maintainers; { + freedesktop = { + members = [ jtojnar worldofpeace ]; + scope = "Maintain Freedesktop.org packages for graphical desktop."; + }; +} -- cgit 1.4.1