bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
29 lines
694 B
Nix
29 lines
694 B
Nix
{ buildGoModule
|
|
, lib
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "go-tools";
|
|
version = "2023.1.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dominikh";
|
|
repo = "go-tools";
|
|
rev = version;
|
|
sha256 = "sha256-oR3fsvZmeddN75WsxOMcYe/RAIjYz+ba03ADJfDUqNg=";
|
|
};
|
|
|
|
vendorHash = "sha256-dUO2Iw+RYk8s+3IV2/TSKjaX61YkD/AROq3177r+wKE=";
|
|
|
|
excludedPackages = [ "website" ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Collection of tools and libraries for working with Go code, including linters and static analysis";
|
|
homepage = "https://staticcheck.io";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ rvolosatovs kalbasit smasher164 ];
|
|
};
|
|
}
|