Unverified Commit 407109ee authored by Austin Horstman's avatar Austin Horstman Committed by GitHub
Browse files

yazi-unwrapped: add man pages (#383128)

parents 50e8d72b 4be578e7
Loading
Loading
Loading
Loading
+23 −5
Original line number Diff line number Diff line
@@ -8,18 +8,34 @@
  Foundation,
  rust-jemalloc-sys,
}:

rustPlatform.buildRustPackage rec {
  pname = "yazi";
let
  version = "25.2.11";

  src = fetchFromGitHub {
  code_src = fetchFromGitHub {
    owner = "sxyazi";
    repo = "yazi";
    rev = "v${version}";
    tag = "v${version}";
    hash = "sha256-yVpSoEmEA+/XF/jlJqKdkj86m8IZLAbrxDxz5ZnmP78=";
  };

  man_src = fetchFromGitHub {
    name = "manpages"; # needed to ensure name is unique
    owner = "yazi-rs";
    repo = "manpages";
    rev = "8950e968f4a1ad0b83d5836ec54a070855068dbf";
    hash = "sha256-kEVXejDg4ChFoMNBvKlwdFEyUuTcY2VuK9j0PdafKus=";
  };
in
rustPlatform.buildRustPackage rec {
  pname = "yazi";
  inherit version;

  srcs = [
    code_src
    man_src
  ];
  sourceRoot = code_src.name;

  useFetchCargoVendor = true;
  cargoHash = "sha256-AfXi68PNrYj6V6CYIPZT0t2l5KYTYrIzJgrcEPLW8FM=";

@@ -36,6 +52,8 @@ rustPlatform.buildRustPackage rec {
      --fish ./yazi-boot/completions/yazi.fish \
      --zsh  ./yazi-boot/completions/_yazi

    installManPage ../${man_src.name}/yazi{.1,-config.5}

    install -Dm444 assets/yazi.desktop -t $out/share/applications
    install -Dm444 assets/logo.png $out/share/pixmaps/yazi.png
  '';