nixpkgs/pkgs/tools/system/zfxtop/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
604 B
Nix
Raw Normal View History

2023-02-27 05:47:46 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "zfxtop";
2023-04-05 01:46:47 +00:00
version = "0.3.2";
2023-02-27 05:47:46 +00:00
src = fetchFromGitHub {
owner = "ssleert";
repo = "zfxtop";
rev = version;
2023-04-05 01:46:47 +00:00
hash = "sha256-7qeTC9CIx4K2fLRM/pYrSU1NHv9TFMsl7TT0W5Uph60=";
2023-02-27 05:47:46 +00:00
};
2023-03-08 11:29:38 +00:00
vendorHash = "sha256-VKBRgDu9xVbZrC5fadkdFjd1OETNwaxgraRnA34ETzE=";
2023-02-27 05:47:46 +00:00
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 ];
2023-11-27 01:17:53 +00:00
mainProgram = "zfxtop";
2023-02-27 05:47:46 +00:00
};
}