summary refs log tree commit diff
diff options
context:
space:
mode:
authorKonrad "Unrooted" Klawikowski <konrad.root.klawikowski@gmail.com>2021-12-18 14:07:49 +0100
committerGitHub <noreply@github.com>2021-12-18 21:07:49 +0800
commitc55e31a2ab88c60979422a45f849f2a4b0097ede (patch)
treec8c6e3bf1a07fb932cca34a3093fcef9f1d0d024
parentb6be35040f4757bd329305accf6d90a15bfab1dd (diff)
downloadnixpkgs-c55e31a2ab88c60979422a45f849f2a4b0097ede.tar
nixpkgs-c55e31a2ab88c60979422a45f849f2a4b0097ede.tar.gz
nixpkgs-c55e31a2ab88c60979422a45f849f2a4b0097ede.tar.bz2
nixpkgs-c55e31a2ab88c60979422a45f849f2a4b0097ede.tar.lz
nixpkgs-c55e31a2ab88c60979422a45f849f2a4b0097ede.tar.xz
nixpkgs-c55e31a2ab88c60979422a45f849f2a4b0097ede.tar.zst
nixpkgs-c55e31a2ab88c60979422a45f849f2a4b0097ede.zip
maintainers: add redcodelabs team
-rw-r--r--maintainers/maintainer-list.nix18
-rw-r--r--maintainers/team-list.nix9
-rw-r--r--pkgs/tools/security/gosh/default.nix2
-rw-r--r--pkgs/tools/security/sammler/default.nix2
-rw-r--r--pkgs/tools/security/snowcrash/default.nix2
5 files changed, 30 insertions, 3 deletions
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index 68cf8b30d54..e003fc95ed3 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -12130,6 +12130,12 @@
     githubId = 122319;
     name = "Renato Alves";
   };
+  unrooted = {
+    name = "Konrad Klawikowski";
+    email = "konrad.root.klawikowski@gmail.com";
+    github = "unrooted";
+    githubId = 30440603;
+  };
   uralbash = {
     email = "root@uralbash.ru";
     github = "uralbash";
@@ -12579,6 +12585,12 @@
     githubId = 78392041;
     name = "Winter";
   };
+  wintrmvte = {
+    name = "Jakub Lutczyn";
+    email = "kubalutczyn@gmail.com";
+    github = "wintrmvte";
+    githubId = 41823252;
+  };
   wirew0rm = {
     email = "alex@wirew0rm.de";
     github = "wirew0rm";
@@ -12657,6 +12669,12 @@
     githubId = 28888242;
     name = "WORLDofPEACE";
   };
+  wr0belj = {
+    name = "Jakub Wróbel";
+    email = "wrobel.jakub@protonmail.com";
+    github = "wr0belj";
+    githubId = 40501814;
+  };
   wscott = {
     email = "wsc9tt@gmail.com";
     github = "wscott";
diff --git a/maintainers/team-list.nix b/maintainers/team-list.nix
index 377fc02fef5..0743c80ec4f 100644
--- a/maintainers/team-list.nix
+++ b/maintainers/team-list.nix
@@ -247,6 +247,15 @@ with lib.maintainers; {
     scope = "Maintain Podman and CRI-O related packages and modules.";
   };
 
+  redcodelabs = {
+    members = [
+      unrooted
+      wr0belj
+      wintrmvte
+    ];
+    scope = "Maintain Red Code Labs related packages and modules.";
+  };
+
   sage = {
     members = [
       timokau
diff --git a/pkgs/tools/security/gosh/default.nix b/pkgs/tools/security/gosh/default.nix
index 5c5ad25e6d9..20cdd25e728 100644
--- a/pkgs/tools/security/gosh/default.nix
+++ b/pkgs/tools/security/gosh/default.nix
@@ -26,6 +26,6 @@ buildGoModule rec {
     description = "Reverse/bind shell generator";
     homepage = "https://github.com/redcode-labs/GoSH";
     license = licenses.mit;
-    maintainers = with maintainers; [ fab ];
+    maintainers = with maintainers; [ fab ] ++ teams.redcodelabs.members;
   };
 }
diff --git a/pkgs/tools/security/sammler/default.nix b/pkgs/tools/security/sammler/default.nix
index f5bfab987a1..f9567147e4e 100644
--- a/pkgs/tools/security/sammler/default.nix
+++ b/pkgs/tools/security/sammler/default.nix
@@ -25,6 +25,6 @@ buildGoModule rec {
     description = "Tool to extract useful data from documents";
     homepage = "https://github.com/redcode-labs/Sammler";
     license = licenses.mit;
-    maintainers = with maintainers; [ fab ];
+    maintainers = with maintainers; [ fab ] ++ teams.redcodelabs.members;
   };
 }
diff --git a/pkgs/tools/security/snowcrash/default.nix b/pkgs/tools/security/snowcrash/default.nix
index cd85ff90bf9..18325e4094a 100644
--- a/pkgs/tools/security/snowcrash/default.nix
+++ b/pkgs/tools/security/snowcrash/default.nix
@@ -28,6 +28,6 @@ buildGoModule rec {
     description = "Polyglot payload generator";
     homepage = "https://github.com/redcode-labs/SNOWCRASH";
     license = with licenses; [ mit ];
-    maintainers = with maintainers; [ fab ];
+    maintainers = with maintainers; [ fab ] ++ teams.redcodelabs.members;
   };
 }