nixpkgs/pkgs/tools/system/zfxtop/default.nix
2023-11-27 02:17:53 +01:00

27 lines
604 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "zfxtop";
version = "0.3.2";
src = fetchFromGitHub {
owner = "ssleert";
repo = "zfxtop";
rev = version;
hash = "sha256-7qeTC9CIx4K2fLRM/pYrSU1NHv9TFMsl7TT0W5Uph60=";
};
vendorHash = "sha256-VKBRgDu9xVbZrC5fadkdFjd1OETNwaxgraRnA34ETzE=";
meta = with lib; {
description = "fetch top for gen Z with X written by bubbletea enjoyer";
homepage = "https://github.com/ssleert/zfxtop";
license = licenses.bsd2;
maintainers = with maintainers; [ wozeparrot ];
mainProgram = "zfxtop";
};
}