lock: 1.3.0 -> 1.3.4 (#364295)
[NixPkgs.git] / pkgs / by-name / go / go-tools / package.nix
blob18496f2252542c8a1d0b163799a2222143ae7479
2   buildGoModule,
3   lib,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "go-tools";
9   version = "2024.1.1";
11   src = fetchFromGitHub {
12     owner = "dominikh";
13     repo = "go-tools";
14     rev = version;
15     sha256 = "sha256-VD6WB0Rcwo41MqZUNVlLGl2yRGZKRGGLGBPvS+ISF4c=";
16   };
18   vendorHash = "sha256-OZ67BWsIUaU24BPQ1VjbGE4GkDZUKgbBG3ynUVXvyaU=";
20   excludedPackages = [ "website" ];
22   doCheck = false;
24   meta = with lib; {
25     description = "Collection of tools and libraries for working with Go code, including linters and static analysis";
26     homepage = "https://staticcheck.io";
27     license = licenses.mit;
28     maintainers = with maintainers; [
29       rvolosatovs
30       kalbasit
31       smasher164
32     ];
33   };