mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
10ac558ca1
Also add a freedesktop maintainer group as an example.
25 lines
538 B
Nix
25 lines
538 B
Nix
/* 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.";
|
|
};
|
|
}
|