nixpkgs/maintainers/team-list.nix

112 lines
1.9 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.";
};
2020-09-05 22:36:45 +00:00
cinnamon = {
members = [
mkg20001
];
scope = "Maintain Cinnamon desktop environment and applications made by the LinuxMint team.";
};
freedesktop = {
members = [ jtojnar worldofpeace ];
scope = "Maintain Freedesktop.org packages for graphical desktop.";
};
2020-06-13 06:48:52 +00:00
golang = {
members = [
c00w
cstrahan
Frostman
kalbasit
mdlayher
2020-06-13 06:48:52 +00:00
mic92
orivej
rvolosatovs
zowoq
];
scope = "Maintain Golang compilers.";
};
gnome = {
members = [
hedning
jtojnar
worldofpeace
2020-07-08 21:18:15 +00:00
dasj19
];
scope = "Maintain GNOME desktop environment and platform.";
};
2020-04-03 10:10:47 +00:00
jitsi = {
members = [
mmilata
petabyteboy
prusnak
ryantm
];
scope = "Maintain Jitsi.";
};
2020-06-12 01:05:26 +00:00
matrix = {
members = [
ma27
pacien
fadenb
mguentner
ekleog
ralith
];
scope = "Maintain the ecosystem around Matrix, a decentralized messenger.";
};
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
};
}