mirror of
https://github.com/sxyazi/yazi.git
synced 2024-11-24 01:48:00 +03:00
c7b002581a
Co-authored-by: Isabel <isabel@isabelroses.com>
29 lines
389 B
Nix
29 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";
|
|
};
|
|
}
|