Merge pull request #114253 from pborzenkov/gops

gops: init at 0.3.15
This commit is contained in:
Sandro 2021-02-25 09:10:16 +01:00 committed by GitHub
commit fdd69470ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 0 deletions

@ -7203,6 +7203,12 @@
githubId = 157610;
name = "Piotr Bogdan";
};
pborzenkov = {
email = "pavel@borzenkov.net";
github = "pborzenkov";
githubId = 434254;
name = "Pavel Borzenkov";
};
pblkt = {
email = "pebblekite@gmail.com";
github = "pblkt";

@ -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 ];
};
}

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