73 lines
1.6 KiB
Nix
73 lines
1.6 KiB
Nix
{ rustPlatform
|
|
, fetchFromGitHub
|
|
, lib
|
|
|
|
, makeWrapper
|
|
, stdenv
|
|
, Foundation
|
|
|
|
, withFile ? true
|
|
, file
|
|
, withJq ? true
|
|
, jq
|
|
, withPoppler ? true
|
|
, poppler_utils
|
|
, withUnar ? true
|
|
, unar
|
|
, withFfmpegthumbnailer ? true
|
|
, ffmpegthumbnailer
|
|
, withFd ? true
|
|
, fd
|
|
, withRipgrep ? true
|
|
, ripgrep
|
|
, withFzf ? true
|
|
, fzf
|
|
, withZoxide ? true
|
|
, zoxide
|
|
|
|
, nix-update-script
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "yazi";
|
|
version = "0.1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sxyazi";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-ARpludMVQlZtCRAfW0cNYVmT3m9t9lunMIW24peYX6Y=";
|
|
};
|
|
|
|
cargoHash = "sha256-dhdk5aGKv6tY8x7MmA0hWcmJBiXOXC92DlQTd/1AKtQ=";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Foundation ];
|
|
|
|
postInstall = with lib;
|
|
let
|
|
runtimePaths = [ ]
|
|
++ optional withFile file
|
|
++ optional withJq jq
|
|
++ optional withPoppler poppler_utils
|
|
++ optional withUnar unar
|
|
++ optional withFfmpegthumbnailer ffmpegthumbnailer
|
|
++ optional withFd fd
|
|
++ optional withRipgrep ripgrep
|
|
++ optional withFzf fzf
|
|
++ optional withZoxide zoxide;
|
|
in
|
|
''
|
|
wrapProgram $out/bin/yazi \
|
|
--prefix PATH : "${makeBinPath runtimePaths}"
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|