yazi/nix/shell.nix
aserowy 0e2893ef25 removed stdout flag
Signed-off-by: aserowy <serowy@hotmail.com>
2024-01-08 08:30:11 +01:00

27 lines
399 B
Nix

{ pkgs, ... }:
pkgs.mkShell {
packages = with pkgs; [
rustToolchain
rust-analyzer
nodejs_20
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"; };
}