Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #284577 from r-ryantm/auto-update/api-linter

api-linter: 1.63.2 -> 1.63.3

authored by Robert Schütz and committed by GitHub fc60a9c6 eeeb5c48

+3 -11
+3 -11
pkgs/development/tools/api-linter/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "api-linter"; 8 - version = "1.63.2"; 8 + version = "1.63.3"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "googleapis"; 12 12 repo = "api-linter"; 13 13 rev = "v${version}"; 14 - hash = "sha256-xbYu/5E3rkH5VUuH0fCs2gfpWysDVABxY+pA4JkU5WY="; 14 + hash = "sha256-mcmp3M9KhZp3j18jh+3v5fwPPLRs2hkrRUN3RM/zCmo="; 15 15 }; 16 16 17 - vendorHash = "sha256-SDfErsM9wC1bGgBwcMRvjTOzqGNQ3kIQM7XeL4sLTC8="; 17 + vendorHash = "sha256-/z2FqMyZnn2A5aajimTS2zw3A1v5v0uYZY81acuQOnw="; 18 18 19 19 subPackages = [ "cmd/api-linter" ]; 20 20 ··· 22 22 "-s" 23 23 "-w" 24 24 ]; 25 - 26 - # reference: https://github.com/googleapis/api-linter/blob/v1.63.2/.github/workflows/release.yaml#L76 27 - preBuild = '' 28 - cat > cmd/api-linter/version.go <<EOF 29 - package main 30 - const version = "${version}" 31 - EOF 32 - ''; 33 25 34 26 meta = with lib; { 35 27 description = "Linter for APIs defined in protocol buffers";