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

28 lines
853 B
Nix
Raw Normal View History

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