nixpkgs/pkgs/development/tools/go-tools/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
698 B
Nix
Raw Normal View History

2019-06-25 19:17:17 +00:00
{ buildGoModule
, lib
2018-11-03 03:20:14 +00:00
, fetchFromGitHub
}:
2019-06-25 19:17:17 +00:00
buildGoModule rec {
pname = "go-tools";
version = "2022.1.2";
2018-11-03 03:20:14 +00:00
src = fetchFromGitHub {
owner = "dominikh";
repo = "go-tools";
2019-06-25 19:17:17 +00:00
rev = version;
sha256 = "sha256-pfZv/GZxb7weD+JFGCOknhRCsx8g5puQfpY9lZ4v6Rs=";
2018-11-03 03:20:14 +00:00
};
vendorSha256 = "sha256-19uLCtKuuZoVwC4SUKvYGWi2ryqAQbcKXY1iNjIqyn8=";
excludedPackages = [ "website" ];
2018-11-03 03:20:14 +00:00
doCheck = false;
meta = with lib; {
2020-02-21 12:35:00 +00:00
description = "A collection of tools and libraries for working with Go code, including linters and static analysis";
homepage = "https://staticcheck.io";
2018-11-03 03:20:14 +00:00
license = licenses.mit;
maintainers = with maintainers; [ rvolosatovs kalbasit smasher164 ];
2018-11-03 03:20:14 +00:00
};
}