about summary refs log tree commit diff
path: root/pkgs/tools/misc/fd
diff options
context:
space:
mode:
authorJack Kelly <jack@jackkelly.name>2022-12-06 20:38:26 +1000
committerJack Kelly <jack@jackkelly.name>2022-12-06 20:38:26 +1000
commit82eed31293053fb97a09c124766bc8a2a9fae1db (patch)
treecc81186d7c45d378efbf7071cb682e8f9fb3e1b6 /pkgs/tools/misc/fd
parent4f4073186f4714a6fbca4e649e568fb35ac8811e (diff)
fd: Point to the correct commit SHA for 8.5.3 release
https://github.com/sharkdp/fd/issues/1184 says that the release
tag shifted for some mysterious reason. I confirmed that this tag
was correct by building the fd derivation with no substituters.
Diffstat (limited to 'pkgs/tools/misc/fd')
-rw-r--r--pkgs/tools/misc/fd/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/tools/misc/fd/default.nix b/pkgs/tools/misc/fd/default.nix
index 6dd0e7a6e7cbd..2795210101c37 100644
--- a/pkgs/tools/misc/fd/default.nix
+++ b/pkgs/tools/misc/fd/default.nix
@@ -7,7 +7,10 @@ rustPlatform.buildRustPackage rec {
   src = fetchFromGitHub {
     owner = "sharkdp";
     repo = "fd";
-    rev = "v${version}";
+    # 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=";
   };