···13131414my $ua = LWP::UserAgent->new();
15151616+if (!defined $ENV{GH_TOKEN}) {
1717+ die "Set GH_TOKEN before running this script";
1818+}
1919+1620keys %$maintainers_json; # reset the internal iterator so a prior each() doesn't affect the loop
1721while(my($k, $v) = each %$maintainers_json) {
1822 my $current_user = %$v{'github'};
1923 if (!defined $current_user) {
2024 print "$k has no github handle\n";
2121- next;
2225 }
2326 my $github_id = %$v{'githubId'};
2427 if (!defined $github_id) {
···3740 sleep($ratelimit_reset - time() + 5);
3841 }
3942 if ($resp->code != 200) {
4040- print $current_user . " likely deleted their github account\n";
4343+ print "$k likely deleted their github account\n";
4144 next;
4245 }
4346 my $resp_json = from_json($resp->content);
4447 my $api_user = %$resp_json{"login"};
4545- if (lc($current_user) ne lc($api_user)) {
4646- print $current_user . " is now known on github as " . $api_user . ". Editing maintainer-list.nix…\n";
4848+ if (!defined $current_user) {
4949+ print "$k is known on github as $api_user.\n";
5050+ }
5151+ elsif (lc($current_user) ne lc($api_user)) {
5252+ print "$k is now known on github as $api_user. Editing maintainer-list.nix…\n";
4753 my $file = path($maintainers_list_nix);
4854 my $data = $file->slurp_utf8;
4955 $data =~ s/github = "$current_user";$/github = "$api_user";/m;
+1-1
pkgs/applications/misc/nhentai/default.nix
···2121 homepage = "https://github.com/RicterZ/nhentai";
2222 description = "nHentai is a CLI tool for downloading doujinshi from <http://nhentai.net>";
2323 license = licenses.mit;
2424- maintainers = with maintainers; [ travisdavis-ops ];
2424+ maintainers = with maintainers; [ ];
2525 };
2626}
+1-1
pkgs/by-name/cl/clzip/package.nix
···1616 homepage = "https://www.nongnu.org/lzip/clzip.html";
1717 description = "C language version of lzip";
1818 license = licenses.gpl2Plus;
1919- maintainers = with maintainers; [ rs0vere ];
1919+ maintainers = with maintainers; [ ];
2020 platforms = platforms.all;
2121 };
2222})
+1-1
pkgs/by-name/re/replxx/package.nix
···2424 homepage = "https://github.com/AmokHuginnsson/replxx";
2525 description = "A readline and libedit replacement that supports UTF-8, syntax highlighting, hints and Windows and is BSD licensed";
2626 license = licenses.bsd3;
2727- maintainers = with maintainers; [ rs0vere ];
2727+ maintainers = with maintainers; [ ];
2828 platforms = platforms.all;
2929 };
3030})
+1-1
pkgs/development/libraries/kcp/default.nix
···2121 description = "A Fast and Reliable ARQ Protocol";
2222 homepage = "https://github.com/skywind3000/kcp";
2323 license = licenses.mit;
2424- maintainers = with maintainers; [ rs0vere ];
2424+ maintainers = with maintainers; [ ];
2525 platforms = platforms.all;
2626 };
2727}