2022-11-15T02:22:49 fd 8.5.2 -> 8.5.3 https://github.com/sharkdp/fd/releases 2022-11-15T02:22:51 attrpath: fd 2022-11-15T02:22:51 Checking auto update branch... 2022-11-15T02:22:51 No auto update branch exists 2022-11-15T02:22:51 Old version 8.5.2" not present in master derivation file with contents: { lib, fetchFromGitHub, rustPlatform, installShellFiles }: rustPlatform.buildRustPackage rec { pname = "fd"; version = "8.5.3"; src = fetchFromGitHub { owner = "sharkdp"; repo = "fd"; rev = "v${version}"; sha256 = "sha256-7QQHLw+isXtr1FDQr4aiUhvOjJUPbaxFGDwukiWBG9g="; }; cargoSha256 = "sha256-QFh47Pr+7lIdT++huziKgMJxvsZElTTwu11c7/wjyHE="; nativeBuildInputs = [ installShellFiles ]; preFixup = '' installManPage doc/fd.1 installShellCompletion $releaseDir/build/fd-find-*/out/fd.{bash,fish} installShellCompletion --zsh contrib/completion/_fd ''; meta = with lib; { description = "A simple, fast and user-friendly alternative to find"; longDescription = '' `fd` is a simple, fast and user-friendly alternative to `find`. While it does not seek to mirror all of `find`'s powerful functionality, it provides sensible (opinionated) defaults for 80% of the use cases. ''; homepage = "https://github.com/sharkdp/fd"; license = with licenses; [ asl20 /* or */ mit ]; maintainers = with maintainers; [ dywedir globin ma27 zowoq ]; }; }