yazi/nix/shell.nix

29 lines
389 B
Nix
Raw Normal View History

{ pkgs, ... }:
2023-09-22 11:08:17 +03:00
pkgs.mkShell {
packages = with pkgs; [
rustToolchain
rust-analyzer
2023-09-22 11:08:17 +03:00
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 ]);
2023-09-22 11:08:17 +03:00
env = {
RUST_BACKTRACE = "1";
};
2023-09-22 11:08:17 +03:00
}