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

28 lines
853 B
Nix
Raw Normal View History

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