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

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

26 lines
576 B
Nix
Raw Normal View History

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