flake-template-hell/templates/rust/nix/shell.nix

6 lines
165 B
Nix
Raw Normal View History

2025-03-26 15:08:13 +00:00
{ mkShell, rustc, cargo, nixfmt, deadnix, statix, rustfmt, clippy }:
2024-08-14 23:44:43 +01:00
mkShell {
2025-03-26 15:08:13 +00:00
name = "rust";
packages = [ nixfmt deadnix statix rustfmt clippy rustc cargo ];
2024-08-14 23:44:43 +01:00
}