From 70f0cf5d00a5fc05e160ba827b55bddcca357f0b Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Tue, 24 May 2022 12:15:40 +0200 Subject: [PATCH 1/2] maintainers/team-list: add LumiGuide team --- maintainers/team-list.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/maintainers/team-list.nix b/maintainers/team-list.nix index 8b21f98409ef..2ea345a652d2 100644 --- a/maintainers/team-list.nix +++ b/maintainers/team-list.nix @@ -355,6 +355,16 @@ with lib.maintainers; { shortName = "Linux Kernel"; }; + lumiguide = { + # Verify additions by approval of an already existing member of the team. + members = [ + roelvandijk + lucus16 + ]; + scope = "Group registration for LumiGuide employees who collectively maintain packages."; + shortName = "Lumiguide employees"; + }; + lumina = { members = [ romildo From 0924b1863c479691a22fc449e6e92c005e2e056e Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Tue, 24 May 2022 12:16:25 +0200 Subject: [PATCH 2/2] picoscope, openrazer, it87, esptool: move maintainership to LumiGuide I no longer work there, but I inherited a few package maintainerships. --- pkgs/applications/science/electronics/picoscope/default.nix | 2 +- pkgs/development/python-modules/openrazer/common.nix | 2 +- pkgs/os-specific/linux/it87/default.nix | 2 +- pkgs/tools/misc/esptool/default.nix | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/science/electronics/picoscope/default.nix b/pkgs/applications/science/electronics/picoscope/default.nix index 83c8e2c6dd33..7db5cceebbaf 100644 --- a/pkgs/applications/science/electronics/picoscope/default.nix +++ b/pkgs/applications/science/electronics/picoscope/default.nix @@ -18,7 +18,7 @@ let shared_meta = lib: with lib; { homepage = "https://www.picotech.com/downloads/linux"; - maintainers = with maintainers; [ expipiplus1 yorickvp wirew0rm ]; + maintainers = with maintainers; [ expipiplus1 wirew0rm ] ++ teams.lumiguide.members; platforms = [ "x86_64-linux" ]; license = licenses.unfree; }; diff --git a/pkgs/development/python-modules/openrazer/common.nix b/pkgs/development/python-modules/openrazer/common.nix index 5db17a83e8f3..28019a258870 100644 --- a/pkgs/development/python-modules/openrazer/common.nix +++ b/pkgs/development/python-modules/openrazer/common.nix @@ -11,7 +11,7 @@ meta = with lib; { homepage = "https://openrazer.github.io/"; license = licenses.gpl2Only; - maintainers = with maintainers; [ roelvandijk evanjs ]; + maintainers = with maintainers; [ evanjs ] ++ teams.lumiguide.members; platforms = platforms.linux; }; } diff --git a/pkgs/os-specific/linux/it87/default.nix b/pkgs/os-specific/linux/it87/default.nix index 471adb7c4dcf..aa51626986e7 100644 --- a/pkgs/os-specific/linux/it87/default.nix +++ b/pkgs/os-specific/linux/it87/default.nix @@ -32,6 +32,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/hannesha/it87"; license = licenses.gpl2Plus; platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = with maintainers; [ yorickvp ]; + maintainers = teams.lumiguide.members; }; } diff --git a/pkgs/tools/misc/esptool/default.nix b/pkgs/tools/misc/esptool/default.nix index b4439363d4ad..e48e02694052 100644 --- a/pkgs/tools/misc/esptool/default.nix +++ b/pkgs/tools/misc/esptool/default.nix @@ -57,7 +57,7 @@ python3.pkgs.buildPythonApplication rec { description = "ESP8266 and ESP32 serial bootloader utility"; homepage = "https://github.com/espressif/esptool"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ dezgeg dotlambda ]; + maintainers = with maintainers; [ dezgeg dotlambda ] ++ teams.lumiguide.members; platforms = platforms.linux; }; }