Unverified Commit a807192d authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #235923 from emilylange/maintainers-fmt

maintainers: fix formatting/indentation, cleanup
parents c4b3593e 139013bc
Loading
Loading
Loading
Loading
+13 −32
Original line number Diff line number Diff line
@@ -2943,7 +2943,7 @@
  };
  citadelcore = {
    email = "alex@arctarus.co.uk";
    github = "CitadelCore";
    github = "VertexA115";
    githubId = 5567402;
    name = "Alex Zero";
    keys = [{
@@ -5531,7 +5531,7 @@
  };
  fuzen = {
    email = "me@fuzen.cafe";
    github = "Fuzen-py";
    github = "LovingMelody";
    githubId = 17859309;
    name = "Fuzen";
  };
@@ -5885,15 +5885,6 @@
    githubId = 1621335;
    name = "Andrew Trachenko";
  };
  gordias = {
    name = "Gordias";
    email = "gordias@disroot.org";
    github = "gordiasdot";
    githubId = 94724133;
    keys = [{
      fingerprint = "C006 B8A0 0618 F3B6 E0E4  2ECD 5D47 2848 30FA A4FA";
    }];
  };
  gotcha = {
    email = "gotcha@bubblenet.be";
    github = "gotcha";
@@ -6768,7 +6759,7 @@
  };
  ilya-kolpakov = {
    email = "ilya.kolpakov@gmail.com";
    github = "ilya-kolpakov";
    github = "1pakch";
    githubId = 592849;
    name = "Ilya Kolpakov";
  };
@@ -7170,7 +7161,7 @@
  jayesh-bhoot = {
    name = "Jayesh Bhoot";
    email = "jb@jayeshbhoot.com";
    github = "jayeshbhoot";
    github = "bhootjb";
    githubId = 1915507;
  };
  jayman2000 = {
@@ -7988,7 +7979,7 @@
  };
  juaningan = {
    email = "juaningan@gmail.com";
    github = "uningan";
    github = "oneingan";
    githubId = 810075;
    name = "Juan Rodal";
  };
@@ -17009,16 +17000,6 @@
    github = "wdavidw";
    githubId = 46896;
  };
  WeebSorceress = {
    name = "WeebSorceress";
    email = "hello@weebsorceress.anonaddy.me";
    matrix = "@weebsorceress:matrix.org";
    github = "WeebSorceress";
    githubId = 106774777;
    keys = [{
      fingerprint = "659A 9BC3 F904 EC24 1461  2EFE 7F57 3443 17F0 FA43";
    }];
  };
  wegank = {
    name = "Weijia Wang";
    email = "contact@weijia.wang";
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ while(my($k, $v) = each %$maintainers_json) {
    }
    my $resp_json = from_json($resp->content);
    my $api_user = %$resp_json{"login"};
    if ($current_user ne $api_user) {
    if (lc($current_user) ne lc($api_user)) {
        print $current_user . " is now known on github as " . $api_user . ". Editing maintainer-list.nix…\n";
        my $file = path($maintainers_list_nix);
        my $data = $file->slurp_utf8;
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ appimageTools.wrapType2 rec {
    description = "App for Ledger hardware wallets";
    homepage = "https://www.ledger.com/ledger-live/";
    license = licenses.mit;
    maintainers = with maintainers; [ andresilva thedavidmeister nyanloutre RaghavSood th0rgal WeebSorceress ];
    maintainers = with maintainers; [ andresilva thedavidmeister nyanloutre RaghavSood th0rgal ];
    platforms = [ "x86_64-linux" ];
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -38,6 +38,6 @@ stdenv.mkDerivation rec {
    description = "popcorn anime-downloader + trackma wrapper";
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
    maintainers = with maintainers; [ WeebSorceress ];
    maintainers = with maintainers; [ ];
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -49,6 +49,6 @@ python3.pkgs.buildPythonApplication rec {
    description = "A simple but powerful anime downloader and streamer";
    license = licenses.unlicense;
    platforms = platforms.linux;
    maintainers = with maintainers; [ WeebSorceress ];
    maintainers = with maintainers; [ ];
  };
}
Loading