25 lines
589 B
Nix
25 lines
589 B
Nix
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "gops";
|
||
|
version = "0.3.16";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "google";
|
||
|
repo = "gops";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "1ksypkja5smxvrhgcjk0w18ws97crx6bx5sj20sh8352xx0nm6mp";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|