python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / gops / default.nix
blob3804368d20fea1790d9599142b822f273ba9d4fd
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "gops";
5   version = "0.3.25";
7   src = fetchFromGitHub {
8     owner = "google";
9     repo = "gops";
10     rev = "v${version}";
11     sha256 = "sha256-y2T+v4EafiVuyRiuQdNDECc06e5eHtquvGA9ugW55Bs=";
12   };
14   vendorSha256 = null;
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   };