Unverified Commit 3b7c1646 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

gotools: 0.22.0 -> 0.25.0 (#346041)

parents 66a7f7ec d7c0edad
Loading
Loading
Loading
Loading
+12 −5
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchFromGitHub }:
{
  lib,
  buildGoModule,
  fetchFromGitHub,
}:

buildGoModule rec {
  pname = "gotools";
  version = "0.22.0";
  version = "0.25.0";

  # using GitHub instead of https://go.googlesource.com/tools because Gitiles UI is to basic to browse
  src = fetchFromGitHub {
    owner = "golang";
    repo = "tools";
    rev = "v${version}";
    hash = "sha256-qqzvbHFbm6RlqztBnuj7HvMa9Wff1+YUA0fxiM0cx8o=";
    hash = "sha256-iM6mGIQF+TOo1iV8hH9/4iOPdNiS9ymPmhslhDVnIIs=";
  };

  postPatch = ''
@@ -18,7 +22,7 @@ buildGoModule rec {
    rm -r gopls
  '';

  vendorHash = "sha256-eQ/T/Zxmzn6KF0ewjvt9TDd48RSsSbQ3LgVcKgdeVbU=";
  vendorHash = "sha256-9NSgtranuyRqtBq1oEnHCPIDFOIUJdVh5W/JufqN2Ko=";

  doCheck = false;

@@ -36,6 +40,9 @@ buildGoModule rec {
    '';
    homepage = "https://go.googlesource.com/tools";
    license = licenses.bsd3;
    maintainers = with maintainers; [ SuperSandro2000 ];
    maintainers = with maintainers; [
      SuperSandro2000
      techknowlogick
    ];
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -26358,8 +26358,6 @@ with pkgs;
  gotestfmt = callPackage ../development/tools/gotestfmt { };
  gotools = callPackage ../development/tools/gotools { };
  gotop = callPackage ../tools/system/gotop {
    inherit (darwin.apple_sdk.frameworks) IOKit;
  };