summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2020-04-04 11:41:02 +0000
committerGitHub <noreply@github.com>2020-04-04 11:41:02 +0000
commit696274fae7202740e9b209ea2dfb4d0ba436751f (patch)
tree17a5e39c4a1307aa8d43e6c990a739fc8a6f3fe1 /pkgs/tools/system
parent4dd89ce0a0f72fc3608d33f9d9f7c23529d4c9aa (diff)
parent6d6f5d1692798bf3a7307fac25ed056413fe588c (diff)
downloadnixpkgs-696274fae7202740e9b209ea2dfb4d0ba436751f.tar
nixpkgs-696274fae7202740e9b209ea2dfb4d0ba436751f.tar.gz
nixpkgs-696274fae7202740e9b209ea2dfb4d0ba436751f.tar.bz2
nixpkgs-696274fae7202740e9b209ea2dfb4d0ba436751f.tar.lz
nixpkgs-696274fae7202740e9b209ea2dfb4d0ba436751f.tar.xz
nixpkgs-696274fae7202740e9b209ea2dfb4d0ba436751f.tar.zst
nixpkgs-696274fae7202740e9b209ea2dfb4d0ba436751f.zip
Merge pull request #83183 from bbigras/zenith
zenith: init at 0.8.0
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/zenith/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/tools/system/zenith/default.nix b/pkgs/tools/system/zenith/default.nix
new file mode 100644
index 00000000000..7ca0f380898
--- /dev/null
+++ b/pkgs/tools/system/zenith/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, rustPlatform, fetchFromGitHub }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "zenith";
+  version = "0.8.0";
+
+  src = fetchFromGitHub {
+    owner = "bvaisvil";
+    repo = pname;
+    rev = version;
+    sha256 = "1m709mnhhjs30s91542rhri3xbzsb3kw8zablvn11rwp2iq1lxxx";
+  };
+
+  cargoSha256 = "1j6pww4mpssnr9zsbfy74llv7336kjrif1qiph998b82qj63vdlg";
+
+  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 ];
+    platforms = platforms.x86;
+  };
+}