Unverified Commit e953e73b authored by Akhil Indurti's avatar Akhil Indurti Committed by GitHub
Browse files

go-tools: 2021.1.2 -> 2022.1.2 (#179827)



* go-tools: 2021.1.2 -> 2022.1.2

* Update pkgs/development/tools/go-tools/default.nix

Co-authored-by: default avatarSandro <sandro.jaeckel@gmail.com>
parent 86481006
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -5,16 +5,18 @@

buildGoModule rec {
  pname = "go-tools";
  version = "2021.1.2";
  version = "2022.1.2";

  src = fetchFromGitHub {
    owner = "dominikh";
    repo = "go-tools";
    rev = version;
    sha256 = "sha256-C6ekgrc+zvm8ZLvw1uYR3ZiMLCNSUw1ANEuM4bT4C/o=";
    sha256 = "sha256-pfZv/GZxb7weD+JFGCOknhRCsx8g5puQfpY9lZ4v6Rs=";
  };

  vendorSha256 = "sha256-EjCOMdeJ0whp2pHZvm4VV2K78UNKzl98Z/cQvGhWSyY=";
  vendorSha256 = "sha256-19uLCtKuuZoVwC4SUKvYGWi2ryqAQbcKXY1iNjIqyn8=";

  excludedPackages = [ "website" ];

  doCheck = false;

@@ -22,6 +24,6 @@ buildGoModule rec {
    description = "A 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 ];
    maintainers = with maintainers; [ rvolosatovs kalbasit smasher164 ];
  };
}