From fcdc10e90f488f7d394d2cde03d33e095a00c18f Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 2 Jun 2024 21:05:43 -0300 Subject: [PATCH 1/3] git-extras: remove cko from maintainers Since theey is not active anymore. --- pkgs/applications/version-management/git-extras/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/version-management/git-extras/default.nix b/pkgs/applications/version-management/git-extras/default.nix index adb36257188cd4..2e10c633b02a97 100644 --- a/pkgs/applications/version-management/git-extras/default.nix +++ b/pkgs/applications/version-management/git-extras/default.nix @@ -42,6 +42,6 @@ stdenv.mkDerivation rec { description = "GIT utilities -- repo summary, repl, changelog population, author commit percentages and more"; license = licenses.mit; platforms = platforms.all; - maintainers = with maintainers; [ cko SuperSandro2000 ]; + maintainers = with maintainers; [ SuperSandro2000 ]; }; } From 72f0546bc33cdc461acff1b8423c84624cd0123c Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 2 Jun 2024 21:06:19 -0300 Subject: [PATCH 2/3] nodejs: remove cko from maintainers Since theey is not active anymore. --- pkgs/development/web/nodejs/nodejs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/web/nodejs/nodejs.nix b/pkgs/development/web/nodejs/nodejs.nix index 962bc3e246bece..73867d11a784b9 100644 --- a/pkgs/development/web/nodejs/nodejs.nix +++ b/pkgs/development/web/nodejs/nodejs.nix @@ -206,7 +206,7 @@ let homepage = "https://nodejs.org"; changelog = "https://github.com/nodejs/node/releases/tag/v${version}"; license = licenses.mit; - maintainers = with maintainers; [ goibhniu cko aduh95 ]; + maintainers = with maintainers; [ goibhniu aduh95 ]; platforms = platforms.linux ++ platforms.darwin; mainProgram = "node"; knownVulnerabilities = optional (versionOlder version "18") "This NodeJS release has reached its end of life. See https://nodejs.org/en/about/releases/."; From ee67572e2b7f8372b25a688bbac572cb5d67e77d Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 2 Jun 2024 21:07:05 -0300 Subject: [PATCH 3/3] maven: remove cko from maintainers Since theey is not active anymore. Warning: orphaned package. --- pkgs/development/tools/build-managers/apache-maven/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/build-managers/apache-maven/default.nix b/pkgs/development/tools/build-managers/apache-maven/default.nix index c8b5fdaa04a95f..8470c333ac6fce 100644 --- a/pkgs/development/tools/build-managers/apache-maven/default.nix +++ b/pkgs/development/tools/build-managers/apache-maven/default.nix @@ -45,6 +45,6 @@ stdenvNoCC.mkDerivation (finalAttrs: { homepage = "https://maven.apache.org/"; license = licenses.asl20; platforms = platforms.unix; - maintainers = with maintainers; [ cko ]; + maintainers = with maintainers; [ ]; }; })