ncro/nix/shell.nix
NotAShelf ea96477830
treewide: rewrite everything in Rust
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I786da853078e1013bb8f463ed9e9869c6a6a6964
2026-05-11 13:28:29 +03:00

23 lines
274 B
Nix

{
mkShell,
cargo,
clippy,
pkg-config,
rust-analyzer,
rustc,
rustfmt,
}:
mkShell {
name = "rust";
strictDeps = true;
nativeBuildInputs = [
cargo
rustc
pkg-config
rust-analyzer
clippy
(rustfmt.override {asNightly = true;})
];
}