lib: Add lib.teams
Also add a freedesktop maintainer group as an example.
This commit is contained in:
parent
e89b21504f
commit
10ac558ca1
|
@ -24,6 +24,7 @@ let
|
||||||
# packaging
|
# packaging
|
||||||
customisation = callLibs ./customisation.nix;
|
customisation = callLibs ./customisation.nix;
|
||||||
maintainers = import ../maintainers/maintainer-list.nix;
|
maintainers = import ../maintainers/maintainer-list.nix;
|
||||||
|
teams = callLibs ../maintainers/team-list.nix;
|
||||||
meta = callLibs ./meta.nix;
|
meta = callLibs ./meta.nix;
|
||||||
sources = callLibs ./sources.nix;
|
sources = callLibs ./sources.nix;
|
||||||
versions = callLibs ./versions.nix;
|
versions = callLibs ./versions.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.";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue