konservejo/nix/shell.nix
NotAShelf d617e7bb35
nix: use nightly rustfmt
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I6eaf1601eb69ef59c0fb5f20e03a5a416a6a6964
2026-03-17 16:18:15 +03:00

30 lines
377 B
Nix

{
mkShell,
rustc,
cargo,
rust-analyzer-unwrapped,
rustfmt,
clippy,
taplo,
rustPlatform,
}:
mkShell {
name = "rust";
strictDeps = true;
packages = [
rustc
cargo
# Tools
(rustfmt.override {asNightly = true;})
clippy
cargo
taplo
# LSP
rust-analyzer-unwrapped
];
env.RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
}