nixpkgs-review: 2.7.0 -> 2.8.0, add figsoda as a maintainer

Diff: https://github.com/Mic92/nixpkgs-review/compare/2.7.0...2.8.0

Changelog: https://github.com/Mic92/nixpkgs-review/releases/tag/2.8.0
This commit is contained in:
figsoda 2022-12-23 10:54:19 -05:00
parent 206a5eb017
commit 3f6aafd102

View file

@ -12,13 +12,13 @@
python3.pkgs.buildPythonApplication rec {
pname = "nixpkgs-review";
version = "2.7.0";
version = "2.8.0";
src = fetchFromGitHub {
owner = "Mic92";
repo = "nixpkgs-review";
rev = version;
sha256 = "sha256-hGOcLrVPb+bSNA72ZfKE9Mjm2dr/qnuaCkjveHXPcws=";
sha256 = "sha256-v8IRRmONb10sPndfsuaUYMrGbbosj48cbfgANZCtIN0=";
};
makeWrapperArgs =
@ -37,7 +37,8 @@ python3.pkgs.buildPythonApplication rec {
meta = with lib; {
description = "Review pull-requests on https://github.com/NixOS/nixpkgs";
homepage = "https://github.com/Mic92/nixpkgs-review";
changelog = "https://github.com/Mic92/nixpkgs-review/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ mic92 SuperSandro2000 ];
maintainers = with maintainers; [ figsoda mic92 SuperSandro2000 ];
};
}