yazi: 0.1.4 -> 0.1.5 (#262500)

Co-authored-by: éclairevoyant <848000+eclairevoyant@users.noreply.github.com>

authored by

Einherjar
éclairevoyant
and committed by
GitHub
13b98764 51d906d2

+9 -4
+9 -4
pkgs/applications/file-managers/yazi/default.nix
··· 3 3 , lib 4 4 5 5 , makeWrapper 6 + , installShellFiles 6 7 , stdenv 7 8 , Foundation 8 9 ··· 30 31 31 32 rustPlatform.buildRustPackage rec { 32 33 pname = "yazi"; 33 - version = "0.1.4"; 34 + version = "0.1.5"; 34 35 35 36 src = fetchFromGitHub { 36 37 owner = "sxyazi"; 37 38 repo = pname; 38 39 rev = "v${version}"; 39 - hash = "sha256-ARpludMVQlZtCRAfW0cNYVmT3m9t9lunMIW24peYX6Y="; 40 + hash = "sha256-FhKrq4N32uJRHGc0qRl+CIVNRW597jACcTFEgj8hiSE="; 40 41 }; 41 42 42 - cargoHash = "sha256-dhdk5aGKv6tY8x7MmA0hWcmJBiXOXC92DlQTd/1AKtQ="; 43 + cargoHash = "sha256-YUymZhDp1Pjm+W6m8Vmh2AgMCdaNt6TQQpiJwSg/gPw="; 43 44 44 - nativeBuildInputs = [ makeWrapper ]; 45 + nativeBuildInputs = [ makeWrapper installShellFiles ]; 45 46 buildInputs = lib.optionals stdenv.isDarwin [ Foundation ]; 46 47 47 48 postInstall = with lib; ··· 60 61 '' 61 62 wrapProgram $out/bin/yazi \ 62 63 --prefix PATH : "${makeBinPath runtimePaths}" 64 + installShellCompletion --cmd yazi \ 65 + --bash ./config/completions/yazi.bash \ 66 + --fish ./config/completions/yazi.fish \ 67 + --zsh ./config/completions/_yazi 63 68 ''; 64 69 65 70 passthru.updateScript = nix-update-script { };