about summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-02-17 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-02-17 04:20:00 -0500
commitd9a19e97cb4ca95af0255cc2abbed14cf1b4e6e1 (patch)
tree73bc7bb0b761ed30aa9c801d0ecc08b151485f50 /pkgs/tools/system
parentc416e032d5dbe9a86b751bb0de0a24e12e4d3151 (diff)
downloadnixlib-d9a19e97cb4ca95af0255cc2abbed14cf1b4e6e1.tar
nixlib-d9a19e97cb4ca95af0255cc2abbed14cf1b4e6e1.tar.gz
nixlib-d9a19e97cb4ca95af0255cc2abbed14cf1b4e6e1.tar.bz2
nixlib-d9a19e97cb4ca95af0255cc2abbed14cf1b4e6e1.tar.lz
nixlib-d9a19e97cb4ca95af0255cc2abbed14cf1b4e6e1.tar.xz
nixlib-d9a19e97cb4ca95af0255cc2abbed14cf1b4e6e1.tar.zst
nixlib-d9a19e97cb4ca95af0255cc2abbed14cf1b4e6e1.zip
ytop: 0.4.0 -> 0.5.1
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/ytop/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/tools/system/ytop/default.nix b/pkgs/tools/system/ytop/default.nix
index 79dcf41b7220..7bd97507beaf 100644
--- a/pkgs/tools/system/ytop/default.nix
+++ b/pkgs/tools/system/ytop/default.nix
@@ -4,19 +4,18 @@ assert stdenv.isDarwin -> IOKit != null;
 
 rustPlatform.buildRustPackage rec {
   pname = "ytop";
-  version = "0.4.0";
+  version = "0.5.1";
 
   src = fetchFromGitHub {
     owner = "cjbassi";
     repo = pname;
     rev = version;
-    sha256 = "1158nlg5b93jyljwvf9f2m8m3ph8sksk5dh9sfnvbiifbk4gizv7";
+    sha256 = "1wpxn8i5112pzs8b03shl627r2yz70lvzjhd6f5crwhsnir06h5x";
   };
 
   buildInputs = stdenv.lib.optionals stdenv.isDarwin [ IOKit ];
 
-  cargoSha256 = "0c4xp63fm1n7x8brmx7avqjvcbqi32k6x5ps7h0fh0ign452y7fz";
-  verifyCargoDeps = true;
+  cargoSha256 = "0wmlmkq4y2923i5kjhprw2hd2v5qls49ncs6h8g9rdlmwd7qdl86";
 
   meta = with stdenv.lib; {
     description = "A TUI system monitor written in Rust";