mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-18 14:21:32 +03:00
c7b002581a
Co-authored-by: Isabel <isabel@isabelroses.com>
68 lines
1.6 KiB
Nix
68 lines
1.6 KiB
Nix
{
|
|
makeRustPlatform,
|
|
rustToolchain,
|
|
version ? "git",
|
|
rev,
|
|
date,
|
|
lib,
|
|
|
|
installShellFiles,
|
|
stdenv,
|
|
darwin,
|
|
|
|
imagemagick,
|
|
}:
|
|
|
|
(makeRustPlatform {
|
|
cargo = rustToolchain;
|
|
rustc = rustToolchain;
|
|
}).buildRustPackage
|
|
{
|
|
pname = "yazi";
|
|
inherit version;
|
|
|
|
src = ../.;
|
|
|
|
cargoLock = {
|
|
lockFile = ../Cargo.lock;
|
|
outputHashes = {
|
|
"notify-6.1.1" = "sha256-5Ft2yvRPi2EaErcGBkF/3Xv6K7ijFGbdjmSqI4go/h4=";
|
|
};
|
|
};
|
|
|
|
env = {
|
|
YAZI_GEN_COMPLETIONS = true;
|
|
VERGEN_GIT_SHA = rev;
|
|
VERGEN_BUILD_DATE = builtins.concatStringsSep "-" (builtins.match "(.{4})(.{2})(.{2}).*" date);
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
imagemagick
|
|
];
|
|
buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ Foundation ]);
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd yazi \
|
|
--bash ./yazi-boot/completions/yazi.bash \
|
|
--fish ./yazi-boot/completions/yazi.fish \
|
|
--zsh ./yazi-boot/completions/_yazi
|
|
|
|
# Resize logo
|
|
for RES in 16 24 32 48 64 128 256; do
|
|
mkdir -p $out/share/icons/hicolor/"$RES"x"$RES"/apps
|
|
magick assets/logo.png -resize "$RES"x"$RES" $out/share/icons/hicolor/"$RES"x"$RES"/apps/yazi.png
|
|
done
|
|
|
|
mkdir -p $out/share/applications
|
|
install -m644 assets/yazi.desktop $out/share/applications/
|
|
'';
|
|
|
|
meta = {
|
|
description = "Blazing fast terminal file manager written in Rust, based on async I/O";
|
|
homepage = "https://github.com/sxyazi/yazi";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "yazi";
|
|
};
|
|
}
|