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

28 lines
839 B
Nix
Raw Normal View History

2020-04-04 22:20:00 +01:00
{ stdenv, rustPlatform, fetchFromGitHub, IOKit }:
2020-03-23 05:25:57 +00:00
rustPlatform.buildRustPackage rec {
pname = "zenith";
2020-04-13 20:08:14 +01:00
version = "0.8.2";
2020-03-23 05:25:57 +00:00
src = fetchFromGitHub {
owner = "bvaisvil";
repo = pname;
rev = version;
2020-04-13 20:08:14 +01:00
sha256 = "1s1l4nq4bsvi54i603faann8cp1409qa2ka7id0m38b3li8z2984";
2020-03-23 05:25:57 +00:00
};
2020-04-04 18:04:53 +01:00
cargoPatches = [ ./cargo-lock.patch ];
2020-04-13 20:08:14 +01:00
cargoSha256 = "0h6k7yf4hpfxnad46iv8gp3v3zc4x4p9yab40gr8xv8r1syf9f6g";
2020-03-23 05:25:57 +00:00
2020-04-04 22:20:00 +01: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 18:04:53 +01:00
# doesn't build on aarch64 https://github.com/bvaisvil/zenith/issues/19
2020-03-23 05:25:57 +00:00
platforms = platforms.x86;
};
}