mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 14:51:03 +00:00
28 lines
389 B
Nix
28 lines
389 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
rustToolchain
|
|
rust-analyzer
|
|
|
|
nodePackages.cspell
|
|
|
|
file
|
|
jq
|
|
poppler_utils
|
|
unar
|
|
ffmpegthumbnailer
|
|
fd
|
|
ripgrep
|
|
fzf
|
|
zoxide
|
|
];
|
|
|
|
buildInputs = with pkgs; lib.optionals stdenv.isDarwin (
|
|
with darwin.apple_sdk.frameworks; [ Foundation ]
|
|
);
|
|
|
|
env = {
|
|
RUST_BACKTRACE = "1";
|
|
};
|
|
}
|