package.nix (706B)
1 { 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5 }: 6 7 buildGoModule { 8 pname = "pproftui"; 9 version = "0-unstable-2025-07-29"; 10 11 __structuredAttrs = true; 12 13 src = fetchFromGitHub { 14 owner = "Oloruntobi1"; 15 repo = "pproftui"; 16 rev = "d94a02c55dcdfc0bd2617acc9a1b98079bf990d8"; 17 hash = "sha256-idephYnsuwFrGBFGG4rG6bPa/WWBaYeddYOZezGBrv4="; 18 }; 19 20 vendorHash = "sha256-1Rb0AZGWQo5hWHwX046R4jfCWBiljQ49eNK1krOmkTk="; 21 22 ldflags = [ "-s" ]; 23 24 meta = { 25 description = "A terminal-based diagnostic tool for Go pprof data"; 26 homepage = "https://github.com/Oloruntobi1/pproftui"; 27 license = lib.licenses.mit; 28 mainProgram = "pproftui"; 29 maintainers = [ lib.maintainers.sikmir ]; 30 }; 31 }
