Commit c18551da authored by Mario Rodas's avatar Mario Rodas
Browse files
parent 383fc9e4
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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;
  };
+3 −1
Original line number Diff line number Diff line
@@ -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 { };