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

27 lines
799 B
Nix
Raw Normal View History

2020-04-04 14:20:00 -07:00
{ stdenv, rustPlatform, fetchFromGitHub, IOKit }:
2020-03-22 22:25:57 -07:00
rustPlatform.buildRustPackage rec {
pname = "zenith";
2020-07-08 11:55:29 -07:00
version = "0.10.0";
2020-03-22 22:25:57 -07:00
src = fetchFromGitHub {
owner = "bvaisvil";
repo = pname;
rev = version;
2020-07-08 11:55:29 -07:00
sha256 = "04nd5gq49y1k9xxrc9ll155k9j42ivscjzx405qyyxv7dpgyw131";
2020-03-22 22:25:57 -07:00
};
2020-07-08 11:55:29 -07:00
cargoSha256 = "0ggpr2skl3d47y771npmbbqb9vga4y4iyry3qn0xj2hg9d7msf4l";
2020-03-22 22:25:57 -07:00
2020-04-04 14:20:00 -07:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ IOKit ];
2020-03-22 22:25:57 -07:00
meta = with stdenv.lib; {
description = "Sort of like top or htop but with zoom-able charts, network, and disk usage";
homepage = "https://github.com/bvaisvil/zenith";
license = licenses.mit;
maintainers = with maintainers; [ bbigras ];
2020-04-04 10:04:53 -07:00
# doesn't build on aarch64 https://github.com/bvaisvil/zenith/issues/19
2020-03-22 22:25:57 -07:00
platforms = platforms.x86;
};
}