Unverified Commit a67b27e3 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

nixpkgs-review: add me as maintainer, small nit change (#131950)

parent 76522ad6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ python3.pkgs.buildPythonApplication rec {
  };

  makeWrapperArgs = [
    "--prefix" "PATH" ":" (lib.makeBinPath [ nixUnstable git ])
    "--prefix" "PATH" ":" "${lib.makeBinPath [ nixUnstable git ]}"
  ];

  doCheck = false;
@@ -26,6 +26,6 @@ python3.pkgs.buildPythonApplication rec {
    description = "Review pull-requests on https://github.com/NixOS/nixpkgs";
    homepage = "https://github.com/Mic92/nixpkgs-review";
    license = licenses.mit;
    maintainers = [ maintainers.mic92 ];
    maintainers = with maintainers; [ mic92 SuperSandro2000 ];
  };
}