about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-06-12 19:46:48 -0500
committerGitHub <noreply@github.com>2020-06-12 19:46:48 -0500
commit6be09e27c935567b4a6f77c6772acbc971e860fd (patch)
tree2069dcf5f14c86541f71fbe09bd381586214b1b4 /pkgs/tools
parent34d1beb1b4811f873987d681562d1727a352e133 (diff)
parent619f7d8c74095b6c8e4afab296598044850f00a2 (diff)
downloadnixlib-6be09e27c935567b4a6f77c6772acbc971e860fd.tar
nixlib-6be09e27c935567b4a6f77c6772acbc971e860fd.tar.gz
nixlib-6be09e27c935567b4a6f77c6772acbc971e860fd.tar.bz2
nixlib-6be09e27c935567b4a6f77c6772acbc971e860fd.tar.lz
nixlib-6be09e27c935567b4a6f77c6772acbc971e860fd.tar.xz
nixlib-6be09e27c935567b4a6f77c6772acbc971e860fd.tar.zst
nixlib-6be09e27c935567b4a6f77c6772acbc971e860fd.zip
Merge pull request #90194 from bbigras/broot
broot: 0.13.6 -> 0.15.1
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/broot/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/misc/broot/default.nix b/pkgs/tools/misc/broot/default.nix
index bf5d569bab48..554d7f9e1dd3 100644
--- a/pkgs/tools/misc/broot/default.nix
+++ b/pkgs/tools/misc/broot/default.nix
@@ -2,23 +2,23 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "broot";
-  version = "0.13.6";
+  version = "0.15.1";
 
   src = fetchFromGitHub {
     owner = "Canop";
     repo = pname;
     rev = "v${version}";
-    sha256 = "08d0zddqqymxj1qcp8c78r7mpii1piy6awaf135jxhzwi775sqqv";
+    sha256 = "1ggzx4w69fmvaxm5gfqhh8ncr2mdx528zm6vwrrwz165lga2fvw6";
   };
 
-  cargoSha256 = "1cxvx51zkmhszmgwsi0aj469xz98v5nk79zvqfyma27gsnh8jczr";
+  cargoSha256 = "0gcq0fww9hl3avh3qcnpnwmpwda4cymr7x3kd3frdizrs8i643mr";
 
   nativeBuildInputs = [ installShellFiles ];
 
   buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
 
   postPatch = ''
-    substituteInPlace src/verb_store.rs --replace '"/bin/' '"${coreutils}/bin/'
+    substituteInPlace src/verb/builtin.rs --replace '"/bin/' '"${coreutils}/bin/'
   '';
 
   postInstall = ''