Unverified Commit 195975b1 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #248134 from aaronjheng/golangci-lint

golangci-lint: 1.53.3 -> 1.54.0
parents e04428a3 abc3cc0a
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -2,16 +2,16 @@

buildGoModule rec {
  pname = "golangci-lint";
  version = "1.53.3";
  version = "1.54.0";

  src = fetchFromGitHub {
    owner = "golangci";
    repo = "golangci-lint";
    rev = "v${version}";
    hash = "sha256-5qTWYmr82BFuyA+lS1HwCHqdrtWScI6tuu0noRbali8=";
    hash = "sha256-UXN5gN1SNv3uvBCliJQ+5PSGHRL7RyU6pmZtGUTFsrQ=";
  };

  vendorHash = "sha256-MEfvBlecFIXqAet3V9qHRmeUzzcsSnkfM3HMTMlxss0=";
  vendorHash = "sha256-jUlK/A0HxBrIby2C0zYFtnxQX1bgKVyypI3QdH4u/rg=";

  subPackages = [ "cmd/golangci-lint" ];

@@ -35,6 +35,7 @@ buildGoModule rec {
  meta = with lib; {
    description = "Fast linters Runner for Go";
    homepage = "https://golangci-lint.run/";
    changelog = "https://github.com/golangci/golangci-lint/blob/v${version}/CHANGELOG.md";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ anpryl manveru mic92 ];
  };