mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 14:51:03 +00:00
25 lines
345 B
Nix
25 lines
345 B
Nix
{
|
|
mkShell,
|
|
yazi,
|
|
toolchain,
|
|
cspell,
|
|
yazi-unwrapped,
|
|
}:
|
|
|
|
mkShell {
|
|
packages = yazi.passthru.runtimePaths ++ [
|
|
(toolchain.override {
|
|
extensions = [
|
|
"rust-src"
|
|
"rustfmt"
|
|
"rust-analyzer"
|
|
"clippy"
|
|
];
|
|
})
|
|
cspell
|
|
];
|
|
|
|
inputsFrom = [ yazi-unwrapped ];
|
|
|
|
env.RUST_BACKTRACE = "1";
|
|
}
|