nixpkgs/maintainers/team-list.nix

67 lines
1.2 KiB
Nix
Raw Normal View History

/* 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; {
2020-04-20 00:17:48 +00:00
acme = {
members = [
aanderse
andrew-d
arianvp
emily
flokli
m1cr0man
];
scope = "Maintain ACME-related packages and modules.";
};
freedesktop = {
members = [ jtojnar worldofpeace ];
scope = "Maintain Freedesktop.org packages for graphical desktop.";
};
gnome = {
members = [
hedning
jtojnar
worldofpeace
];
scope = "Maintain GNOME desktop environment and platform.";
};
2020-04-03 10:10:47 +00:00
2020-04-19 18:47:42 +00:00
php = {
members = [
aanderse
etu
globin
ma27
talyz
];
scope = "Maintain PHP related packages and extensions.";
};
2020-04-03 10:10:47 +00:00
podman = {
members = [
adisbladis
2020-04-03 10:10:47 +00:00
saschagrunert
vdemeester
zowoq
];
2020-04-23 22:07:37 +00:00
scope = "Maintain Podman and CRI-O related packages and modules.";
2020-04-03 10:10:47 +00:00
};
}