evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / go-tools / package.nix
blobdd4f60f16b744e883e5e70d791807eb169391f51
1 { buildGoModule
2 , lib
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "go-tools";
8   version = "2024.1.1";
10   src = fetchFromGitHub {
11     owner = "dominikh";
12     repo = "go-tools";
13     rev = version;
14     sha256 = "sha256-VD6WB0Rcwo41MqZUNVlLGl2yRGZKRGGLGBPvS+ISF4c=";
15   };
17   vendorHash = "sha256-OZ67BWsIUaU24BPQ1VjbGE4GkDZUKgbBG3ynUVXvyaU=";
19   excludedPackages = [ "website" ];
21   doCheck = false;
23   meta = with lib; {
24     description = "Collection of tools and libraries for working with Go code, including linters and static analysis";
25     homepage = "https://staticcheck.io";
26     license = licenses.mit;
27     maintainers = with maintainers; [ rvolosatovs kalbasit smasher164 ];
28   };