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: 9e7f3507bf12
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: abdcdad52330
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 5, 2020

  1. golangci-lint: 1.25.1 -> 1.26.0

    Signed-off-by: Vincent Demeester <vincent@sbr.pm>
    vdemeester committed May 5, 2020
    Copy the full SHA
    96274c6 View commit details

Commits on May 6, 2020

  1. Merge pull request #86950 from vdemeester/update-golangci-lint

    golangci-lint: 1.25.1 -> 1.26.0
    marsam authored May 6, 2020
    Copy the full SHA
    abdcdad View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/golangci-lint/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/golangci-lint/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

buildGoModule rec {
pname = "golangci-lint";
version = "1.25.1";
version = "1.26.0";

src = fetchFromGitHub {
owner = "golangci";
repo = "golangci-lint";
rev = "v${version}";
sha256 = "04r26nn72myacs6v2jq8mi4kjik82iwsh6w59h4k9yk0my3fjwia";
sha256 = "1xw6m4ps6yw8gnkwy8v7rrz2b8c8n72cd7vkpx481dkd36vccpkc";
};

modSha256 = "1pz5f2hv2lssiwsp60hsycg2ijyafb7r5fl2yrvflqg547k3n8x2";
modSha256 = "0xgnimr1jydrgwhbyjaz710kx3m3505nhy5cs10p501qxbnzkjf9";
subPackages = [ "cmd/golangci-lint" ];

meta = with lib; {