Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ffd68f21e860
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: de26ac107f3f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 8, 2020

  1. reviewdog: 0.9.14 -> 0.9.15

    marsam committed Jan 8, 2020
    Copy the full SHA
    3228b9d View commit details

Commits on Jan 10, 2020

  1. Merge pull request #77413 from marsam/update-reviewdog

    reviewdog: 0.9.14 -> 0.9.15
    mmahut authored Jan 10, 2020
    Copy the full SHA
    de26ac1 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/tools/misc/reviewdog/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/tools/misc/reviewdog/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

buildGoModule rec {
pname = "reviewdog";
version = "0.9.14";
version = "0.9.15";

src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "1npawdvryrxrdfkv4j1jk63l3mwsdgsj85k9yqyhrrphk2w4s1cr";
sha256 = "05dh70967264lc3srwajnxxfdgsgybc9i7j2jqbqzin6dmxbnrc0";
};

modSha256 = "0a6bmwysgvwpddh2mp228s2brb0kqfcxqjffs2pabf7ym5flmz0g";
modSha256 = "09ifp0iqd8jlz01mhxaz7adrcc699vim6pwxgf83pmqdw92jz034";

subPackages = [ "cmd/reviewdog" ];

@@ -20,6 +20,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/releases/tag/v${version}";
maintainers = [ maintainers.marsam ];
license = licenses.mit;
};