mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-18 22:31:35 +03:00
27 lines
385 B
Nix
27 lines
385 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"; };
|
|
}
|