2020-04-04 21:20:00 +00:00
|
|
|
{ stdenv, rustPlatform, fetchFromGitHub, IOKit }:
|
2020-03-23 05:25:57 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "zenith";
|
2020-10-29 11:04:23 +00:00
|
|
|
version = "0.11.0";
|
2020-03-23 05:25:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bvaisvil";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-10-29 11:04:23 +00:00
|
|
|
sha256 = "1cxmgpq07q6vfasnkx3grpx1y0f0dg6irb9kdn17nwrypy44l92d";
|
2020-03-23 05:25:57 +00:00
|
|
|
};
|
|
|
|
|
2020-10-29 11:04:23 +00:00
|
|
|
cargoSha256 = "1kgjj11fwvlk700yp9046b3kiq9ay47fiwqpqfhmlbxw3lsh8qvq";
|
2020-03-23 05:25:57 +00:00
|
|
|
|
2020-04-04 21:20:00 +00:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ IOKit ];
|
|
|
|
|
2020-03-23 05:25:57 +00: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 17:04:53 +00:00
|
|
|
# doesn't build on aarch64 https://github.com/bvaisvil/zenith/issues/19
|
2020-09-12 20:02:13 +00:00
|
|
|
# see https://github.com/NixOS/nixpkgs/pull/88616
|
2020-03-23 05:25:57 +00:00
|
|
|
platforms = platforms.x86;
|
|
|
|
};
|
|
|
|
}
|