1/* List of maintainer teams.
2 name = {
3 # Required
4 members = [ maintainer1 maintainer2 ];
5 scope = "Maintain foo packages.";
6 };
7
8 where
9
10 - `members` is the list of maintainers belonging to the group,
11 - `scope` describes the scope of the group.
12
13 More fields may be added in the future.
14
15 Please keep the list alphabetically sorted.
16 */
17
18{ lib }:
19with lib.maintainers; {
20 acme = {
21 members = [
22 aanderse
23 andrew-d
24 arianvp
25 emily
26 flokli
27 m1cr0man
28 ];
29 scope = "Maintain ACME-related packages and modules.";
30 };
31
32 beam = {
33 members = [
34 ankhers
35 Br1ght0ne
36 DianaOlympos
37 gleber
38 happysalada
39 yurrriq
40 ];
41 scope = "Maintain BEAM-related packages and modules.";
42 };
43
44 cinnamon = {
45 members = [
46 mkg20001
47 ];
48 scope = "Maintain Cinnamon desktop environment and applications made by the LinuxMint team.";
49 };
50
51 chia = {
52 members = [
53 atemu
54 lourkeur
55 ];
56 scope = "Maintain the Chia blockchain and its dependencies";
57 };
58
59 deshaw = {
60 # Verify additions to this team with at least one already existing member of the team.
61 members = [
62 limeytexan
63 ];
64 scope = "Group registration for D. E. Shaw employees who collectively maintain packages.";
65 };
66
67 determinatesystems = {
68 # Verify additions to this team with at least one already existing member of the team.
69 members = [
70 cole-h
71 grahamc
72 ];
73 scope = "Group registration for packages maintained by Determinate Systems.";
74 };
75
76 freedesktop = {
77 members = [ jtojnar ];
78 scope = "Maintain Freedesktop.org packages for graphical desktop.";
79 };
80
81 gcc = {
82 members = [
83 synthetica
84 vcunat
85 ericson2314
86 ];
87 scope = "Maintain GCC (GNU Compiler Collection) compilers";
88 };
89
90 golang = {
91 members = [
92 c00w
93 cstrahan
94 Frostman
95 kalbasit
96 mdlayher
97 mic92
98 orivej
99 rvolosatovs
100 zowoq
101 ];
102 scope = "Maintain Golang compilers.";
103 };
104
105 gnome = {
106 members = [
107 hedning
108 jtojnar
109 dasj19
110 maxeaubrey
111 ];
112 scope = "Maintain GNOME desktop environment and platform.";
113 };
114
115 haskell = {
116 members = [
117 cdepillabout
118 expipiplus1
119 maralorn
120 sternenseemann
121 ];
122 scope = "Maintain Haskell packages and infrastructure.";
123 };
124
125 home-assistant = {
126 members = [
127 fab
128 globin
129 hexa
130 mic92
131 ];
132 scope = "Maintain the Home Assistant ecosystem";
133 };
134
135 iog = {
136 members = [
137 cleverca22
138 disassembler
139 jonringer
140 manveru
141 nrdxp
142 ];
143 scope = "Input-Output Global employees, which maintain critical software";
144 };
145
146 jitsi = {
147 members = [
148 cleeyv
149 petabyteboy
150 ryantm
151 yuka
152 ];
153 scope = "Maintain Jitsi.";
154 };
155
156 kodi = {
157 members = [
158 aanderse
159 cpages
160 edwtjo
161 minijackson
162 peterhoeg
163 sephalon
164 ];
165 scope = "Maintain Kodi and related packages.";
166 };
167
168 linux-kernel = {
169 members = [
170 TredwellGit
171 ma27
172 nequissimus
173 qyliss
174 ];
175 scope = "Maintain the Linux kernel.";
176 };
177
178 mate = {
179 members = [
180 j03
181 romildo
182 ];
183 scope = "Maintain Mate desktop environment and related packages.";
184 };
185
186 matrix = {
187 members = [
188 ma27
189 fadenb
190 mguentner
191 ekleog
192 ralith
193 mjlbach
194 dandellion
195 sumnerevans
196 ];
197 scope = "Maintain the ecosystem around Matrix, a decentralized messenger.";
198 };
199
200 openstack = {
201 members = [
202 angustrau
203 SuperSandro2000
204 ];
205 scope = "Maintain the ecosystem around OpenStack";
206 };
207
208 pantheon = {
209 members = [
210 davidak
211 bobby285271
212 ];
213 scope = "Maintain Pantheon desktop environment and platform.";
214 };
215
216 php = {
217 members = [
218 aanderse
219 etu
220 globin
221 ma27
222 talyz
223 ];
224 scope = "Maintain PHP related packages and extensions.";
225 };
226
227 podman = {
228 members = [
229 adisbladis
230 saschagrunert
231 vdemeester
232 zowoq
233 ];
234 scope = "Maintain Podman and CRI-O related packages and modules.";
235 };
236
237 sage = {
238 members = [
239 timokau
240 omasanori
241 raskin
242 collares
243 ];
244 scope = "Maintain SageMath and the dependencies that are likely to break it.";
245 };
246
247 serokell = {
248 # Verify additions by approval of an already existing member of the team.
249 members = [
250 balsoft
251 mkaito
252 ];
253 scope = "Group registration for Serokell employees who collectively maintain packages.";
254 };
255
256 tts = {
257 members = [
258 hexa
259 mic92
260 ];
261 scope = "coqui-ai TTS (formerly Mozilla TTS) and leaf packages";
262 };
263}