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

This commit is contained in:
Sandro 2021-07-29 13:30:00 +00:00 committed by GitHub
parent 76522ad634
commit a67b27e31a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};
}