about summary refs log tree commit diff
path: root/pkgs/tools/misc/fd
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2022-12-10 04:10:44 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-12-10 04:17:28 +1000
commit789c2b4110f9e64bcc3017979aaf79dfaf82174b (patch)
tree93919ff5d75ae7a8f986e7a7ca86bcbbeccabf26 /pkgs/tools/misc/fd
parentc2e9f0550aff4c4f7af67737f9c2a64bdfffae2d (diff)
fd: 8.5.3 -> 8.6.0
https://github.com/sharkdp/fd/releases/tag/v8.6.0
Diffstat (limited to 'pkgs/tools/misc/fd')
-rw-r--r--pkgs/tools/misc/fd/default.nix11
1 files changed, 4 insertions, 7 deletions
diff --git a/pkgs/tools/misc/fd/default.nix b/pkgs/tools/misc/fd/default.nix
index 2795210101c37..c15ccc03d2581 100644
--- a/pkgs/tools/misc/fd/default.nix
+++ b/pkgs/tools/misc/fd/default.nix
@@ -2,19 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "fd";
-  version = "8.5.3";
+  version = "8.6.0";
 
   src = fetchFromGitHub {
     owner = "sharkdp";
     repo = "fd";
-    # On the next release, go back to `rev = "v${version}";`
-    # The 8.5.3 release appears to have been mysteriously re-tagged:
-    # https://github.com/sharkdp/fd/issues/1184
-    rev = "f6e74407e80a5563a9e4d0530371aed281e05838";
-    sha256 = "sha256-7QQHLw+isXtr1FDQr4aiUhvOjJUPbaxFGDwukiWBG9g=";
+    rev = "v${version}";
+    sha256 = "sha256-RVGCSUYyWo2wKRIrnci+aWEAPW9jHhMfYkYJkCgd7f8=";
   };
 
-  cargoSha256 = "sha256-QFh47Pr+7lIdT++huziKgMJxvsZElTTwu11c7/wjyHE=";
+  cargoSha256 = "sha256-PT95U1l+BVX7sby3GKktZMmbNNQoPYR8nL+H90EnqZY=";
 
   nativeBuildInputs = [ installShellFiles ];