c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ rustPlatform
|
|
, fetchFromGitHub
|
|
, lib
|
|
|
|
, installShellFiles
|
|
, stdenv
|
|
, Foundation
|
|
|
|
, nix-update-script
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "yazi";
|
|
version = "0.2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sxyazi";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-2AiaJs6xY8hsB1DBxpPwdZtc8IZvsoCGWBOFVMf4dvk=";
|
|
};
|
|
|
|
cargoHash = "sha256-fRUmXv27sHYz8z0cc795JCPLHDQGgTV4wAWAtQ/pbg4=";
|
|
|
|
env.YAZI_GEN_COMPLETIONS = true;
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Foundation ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd yazi \
|
|
--bash ./yazi-config/completions/yazi.bash \
|
|
--fish ./yazi-config/completions/yazi.fish \
|
|
--zsh ./yazi-config/completions/_yazi
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "Blazing fast terminal file manager written in Rust, based on async I/O";
|
|
homepage = "https://github.com/sxyazi/yazi";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ xyenon matthiasbeyer ];
|
|
mainProgram = "yazi";
|
|
};
|
|
}
|