nixpkgs/pkgs/development/tools/gops/default.nix

25 lines
589 B
Nix
Raw Normal View History

2021-02-24 16:07:44 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gops";
2021-04-19 09:43:17 +00:00
version = "0.3.18";
2021-02-24 16:07:44 +00:00
src = fetchFromGitHub {
owner = "google";
repo = "gops";
rev = "v${version}";
2021-04-19 09:43:17 +00:00
sha256 = "0534jyravpsj73lgdmw6fns1qaqiw401jlfk04wa0as5sv09rfhy";
2021-02-24 16:07:44 +00:00
};
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 ];
};
}