summary refs log tree commit diff
path: root/pkgs/tools/misc/broot
diff options
context:
space:
mode:
authorMrinal Purohit <github@mrinalpurohit.in>2021-12-03 17:07:05 +0530
committerMrinal Purohit <github@mrinalpurohit.in>2021-12-03 17:07:05 +0530
commit08691e47ce29320f11e67c5d45245db42b48af5d (patch)
treeefa1eb33410aa38eeb0ccb09779c8e0f5097a455 /pkgs/tools/misc/broot
parentd3a2719fe84429664b90c66382ad39c115039339 (diff)
downloadnixpkgs-08691e47ce29320f11e67c5d45245db42b48af5d.tar
nixpkgs-08691e47ce29320f11e67c5d45245db42b48af5d.tar.gz
nixpkgs-08691e47ce29320f11e67c5d45245db42b48af5d.tar.bz2
nixpkgs-08691e47ce29320f11e67c5d45245db42b48af5d.tar.lz
nixpkgs-08691e47ce29320f11e67c5d45245db42b48af5d.tar.xz
nixpkgs-08691e47ce29320f11e67c5d45245db42b48af5d.tar.zst
nixpkgs-08691e47ce29320f11e67c5d45245db42b48af5d.zip
broot: 1.7.3 -> 1.7.4
Diffstat (limited to 'pkgs/tools/misc/broot')
-rw-r--r--pkgs/tools/misc/broot/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/misc/broot/default.nix b/pkgs/tools/misc/broot/default.nix
index 6a8ace3b2a9..2f953dfd032 100644
--- a/pkgs/tools/misc/broot/default.nix
+++ b/pkgs/tools/misc/broot/default.nix
@@ -15,14 +15,14 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "broot";
-  version = "1.7.3";
+  version = "1.7.4";
 
   src = fetchCrate {
     inherit pname version;
-    sha256 = "sha256-qu8COcMuReV8zbDK5lm378SQY+TwDy/lo9T/ldNMfz0=";
+    sha256 = "sha256-laFLm6A0EeprSHuqBi3p4ykgBbCinYU1sf0iRV0PY/M=";
   };
 
-  cargoHash = "sha256-ndFymXT2hA4ZztePDFhAYlMh8Iwxi1/ULZYGq+W5vpE=";
+  cargoHash = "sha256-0ybig1S56cJjf6QGWuDasfsIiwRhK+bpWNKOjs4D7P8=";
 
   nativeBuildInputs = [
     installShellFiles
@@ -76,6 +76,7 @@ rustPlatform.buildRustPackage rec {
   meta = with lib; {
     description = "An interactive tree view, a fuzzy search, a balanced BFS descent and customizable commands";
     homepage = "https://dystroy.org/broot/";
+    changelog = "https://github.com/Canop/broot/releases/tag/v${version}";
     maintainers = with maintainers; [ dywedir ];
     license = with licenses; [ mit ];
   };