linux: create maintainer team
Now there are a few more folks who should get pinged on kernel changes: $ nix-instantiate -E 'with import ./. {}; (map (x: x.github) linux.meta.maintainers)' --eval --strict [ "TredwellGit" "mweinelt" "ma27" "nequissimus" "alyssais" "thoughtpolice" ] Refs #140281 (cherry picked from commit 65930caffe78ccd3c0e4f00bfd79123fcba9e444)
This commit is contained in:
parent
a6e34d50fc
commit
f48b51e12e
|
@ -142,6 +142,16 @@ with lib.maintainers; {
|
||||||
scope = "Maintain Kodi and related packages.";
|
scope = "Maintain Kodi and related packages.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
linux-kernel = {
|
||||||
|
members = [
|
||||||
|
TredwellGit
|
||||||
|
ma27
|
||||||
|
nequissimus
|
||||||
|
qyliss
|
||||||
|
];
|
||||||
|
scope = "Maintain the Linux kernel.";
|
||||||
|
};
|
||||||
|
|
||||||
matrix = {
|
matrix = {
|
||||||
members = [
|
members = [
|
||||||
ma27
|
ma27
|
||||||
|
|
|
@ -288,7 +288,7 @@ let
|
||||||
license = lib.licenses.gpl2Only;
|
license = lib.licenses.gpl2Only;
|
||||||
homepage = "https://www.kernel.org/";
|
homepage = "https://www.kernel.org/";
|
||||||
repositories.git = "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git";
|
repositories.git = "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git";
|
||||||
maintainers = [
|
maintainers = lib.teams.linux-kernel.members ++ [
|
||||||
maintainers.thoughtpolice
|
maintainers.thoughtpolice
|
||||||
];
|
];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
|
Loading…
Reference in New Issue