chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ya / yazi-unwrapped / package.nix
blob561eea7fdb0d2c91c293eb7654554dab9d0df90c
2   rustPlatform,
3   fetchFromGitHub,
4   lib,
6   installShellFiles,
7   stdenv,
8   Foundation,
9   rust-jemalloc-sys,
12 rustPlatform.buildRustPackage rec {
13   pname = "yazi";
14   version = "0.3.3";
16   src = fetchFromGitHub {
17     owner = "sxyazi";
18     repo = "yazi";
19     rev = "v${version}";
20     hash = "sha256-bTDf8muJN0G4+c6UagtWgNLlmGN15twEBjdmKEP0bCE=";
21   };
23   cargoHash = "sha256-8UsdanF8y4uFoXdC7aAw7pVFRd9GACcfVvqkUtFmN5k=";
25   env.YAZI_GEN_COMPLETIONS = true;
26   env.VERGEN_GIT_SHA = "Nixpkgs";
27   env.VERGEN_BUILD_DATE = "2024-09-04";
29   nativeBuildInputs = [ installShellFiles ];
30   buildInputs = [ rust-jemalloc-sys ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ Foundation ];
32   postInstall = ''
33     installShellCompletion --cmd yazi \
34       --bash ./yazi-boot/completions/yazi.bash \
35       --fish ./yazi-boot/completions/yazi.fish \
36       --zsh  ./yazi-boot/completions/_yazi
38     install -Dm444 assets/yazi.desktop -t $out/share/applications
39     install -Dm444 assets/logo.png $out/share/pixmaps/yazi.png
40   '';
42   passthru.updateScript.command = [ ./update.sh ];
44   meta = {
45     description = "Blazing fast terminal file manager written in Rust, based on async I/O";
46     homepage = "https://github.com/sxyazi/yazi";
47     license = lib.licenses.mit;
48     maintainers = with lib.maintainers; [
49       xyenon
50       matthiasbeyer
51       linsui
52       eljamm
53       uncenter
54     ];
55     mainProgram = "yazi";
56   };