summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorBruno Bigras <bigras.bruno@gmail.com>2020-03-23 01:25:57 -0400
committerBruno Bigras <bigras.bruno@gmail.com>2020-04-02 01:38:10 -0400
commit6d6f5d1692798bf3a7307fac25ed056413fe588c (patch)
tree91e180c99d3b9324e8adb073526b15c642e8b478 /pkgs/tools/system
parent7e55f28cfe6b52afeb8aef742f99affd7fa5e273 (diff)
downloadnixpkgs-6d6f5d1692798bf3a7307fac25ed056413fe588c.tar
nixpkgs-6d6f5d1692798bf3a7307fac25ed056413fe588c.tar.gz
nixpkgs-6d6f5d1692798bf3a7307fac25ed056413fe588c.tar.bz2
nixpkgs-6d6f5d1692798bf3a7307fac25ed056413fe588c.tar.lz
nixpkgs-6d6f5d1692798bf3a7307fac25ed056413fe588c.tar.xz
nixpkgs-6d6f5d1692798bf3a7307fac25ed056413fe588c.tar.zst
nixpkgs-6d6f5d1692798bf3a7307fac25ed056413fe588c.zip
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;
+  };
+}