at 23.11-beta 24 lines 635 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "gops"; 5 version = "0.3.28"; 6 7 src = fetchFromGitHub { 8 owner = "google"; 9 repo = "gops"; 10 rev = "v${version}"; 11 sha256 = "sha256-HNM487WSfNWNF31ccDIdotsEG8Mj2C7V85UI47a9drU="; 12 }; 13 14 vendorHash = "sha256-ptC2G7cXcAjthJcAXvuBqI2ZpPuSMBqzO+gJiyaAUP0="; 15 16 preCheck = "export HOME=$(mktemp -d)"; 17 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 }; 24}