2023-10-22 03:10:53 +03:00
|
|
|
{ pkgs, ... }:
|
2023-09-22 11:08:17 +03:00
|
|
|
|
|
|
|
pkgs.mkShell {
|
|
|
|
packages = with pkgs; [
|
2023-11-29 15:37:10 +03:00
|
|
|
rustToolchain
|
2023-10-22 03:10:53 +03:00
|
|
|
rust-analyzer
|
|
|
|
|
2023-09-22 11:08:17 +03:00
|
|
|
nodePackages.cspell
|
|
|
|
|
|
|
|
file
|
|
|
|
jq
|
|
|
|
poppler_utils
|
|
|
|
unar
|
|
|
|
ffmpegthumbnailer
|
|
|
|
fd
|
|
|
|
ripgrep
|
|
|
|
fzf
|
|
|
|
zoxide
|
|
|
|
];
|
|
|
|
|
2023-10-24 11:16:24 +03:00
|
|
|
buildInputs = with pkgs;
|
|
|
|
lib.optionals stdenv.isDarwin
|
2023-11-29 15:37:10 +03:00
|
|
|
(with darwin.apple_sdk.frameworks; [ Foundation ]);
|
2023-09-22 11:08:17 +03:00
|
|
|
|
2023-10-24 11:16:24 +03:00
|
|
|
env = { RUST_BACKTRACE = "1"; };
|
2023-09-22 11:08:17 +03:00
|
|
|
}
|