Mario Rodas 2023-09-08 04:20:00 +00:00
parent 383fc9e44e
commit c18551dada
2 changed files with 7 additions and 5 deletions

View File

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "reviewdog";
version = "0.14.2";
version = "0.15.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
hash = "sha256-JTHvLbJJOnQD9rW9GJ+7vtROMnpjgwD9Gu4cSf+ZIgs=";
hash = "sha256-EKDs0Xv38RLC3qDkb8QT3CMWdi7tEPRXxhlZiC/dyZo=";
};
vendorHash = "sha256-ADLBpTruCHgdi9+kO24ZguKJkxGDDKyrC60i7aiDA/4=";
vendorHash = "sha256-IKndnxeLy9hLFzs0SesRQzii9h8MX9FrEcpHaaKIq4k=";
doCheck = false;
@ -22,7 +22,7 @@ buildGoModule rec {
meta = with lib; {
description = "Automated code review tool integrated with any code analysis tools regardless of programming language";
homepage = "https://github.com/reviewdog/reviewdog";
changelog = "https://github.com/reviewdog/reviewdog/raw/v${version}/CHANGELOG.md";
changelog = "https://github.com/reviewdog/reviewdog/blob/v${version}/CHANGELOG.md";
maintainers = [ maintainers.marsam ];
license = licenses.mit;
};

View File

@ -20118,7 +20118,9 @@ with pkgs;
withPEPatterns = true;
};
reviewdog = callPackage ../development/tools/misc/reviewdog { };
reviewdog = callPackage ../development/tools/misc/reviewdog {
buildGoModule = buildGo121Module;
};
revive = callPackage ../development/tools/revive { };