gops: init at 0.3.15

This commit is contained in:
Pavel Borzenkov 2021-02-24 19:07:44 +03:00
parent e81087813f
commit 46098b3f89
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gops";
version = "0.3.15";
src = fetchFromGitHub {
owner = "google";
repo = "gops";
rev = "v${version}";
sha256 = "091idnsgbwabmm5s9zhm474fbxvjvpkvwg68snbypfll7wdr3phy";
};
vendorSha256 = null;
preCheck = "export HOME=$(mktemp -d)";
meta = with lib; {
description = "A tool to list and diagnose Go processes currently running on your system";
homepage = "https://github.com/google/gops";
license = licenses.bsd3;
maintainers = with maintainers; [ pborzenkov ];
};
}

View file

@ -19840,6 +19840,8 @@ in
gopls = callPackage ../development/tools/gopls { };
gops = callPackage ../development/tools/gops { };
gore = callPackage ../development/tools/gore { };
gotests = callPackage ../development/tools/gotests { };