Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / gops / default.nix
blob6b191d00bf3bbba18246449ba7d2a55d265466f6
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "gops";
5   version = "0.3.28";
7   src = fetchFromGitHub {
8     owner = "google";
9     repo = "gops";
10     rev = "v${version}";
11     sha256 = "sha256-HNM487WSfNWNF31ccDIdotsEG8Mj2C7V85UI47a9drU=";
12   };
14   vendorHash = "sha256-ptC2G7cXcAjthJcAXvuBqI2ZpPuSMBqzO+gJiyaAUP0=";
16   preCheck = "export HOME=$(mktemp -d)";
18   meta = with lib; {
19     description = "A tool to list and diagnose Go processes currently running on your system";
20     homepage = "https://github.com/google/gops";
21     license = licenses.bsd3;
22     maintainers = with maintainers; [ pborzenkov ];
23   };