From 789c2b4110f9e64bcc3017979aaf79dfaf82174b Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sat, 10 Dec 2022 04:10:44 +1000 Subject: [PATCH] fd: 8.5.3 -> 8.6.0 https://github.com/sharkdp/fd/releases/tag/v8.6.0 --- pkgs/tools/misc/fd/default.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/misc/fd/default.nix b/pkgs/tools/misc/fd/default.nix index 2795210101c3..c15ccc03d258 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 ];