repo-rs/shell.nix
2025-08-09 19:57:05 +02:00

10 lines
146 B
Nix

{ pkgs ? import <nixpkgs> {}, ... }:
pkgs.mkShell {
packages = with pkgs; [
cargo
clippy
rustc
rust-analyzer
rustfmt
];
}