1
0
Fork 0

Minimal rust toolchain shell.nix

This commit is contained in:
Vili Sinervä 2025-01-15 15:02:16 +02:00
parent 5d9aab2043
commit 33d279ef26
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996

15
shell.nix Normal file
View file

@ -0,0 +1,15 @@
let
nixpkgs = <nixpkgs>;
pkgs = import nixpkgs {
config = { };
overlays = [ ];
};
in
pkgs.mkShell {
packages = with pkgs; [
cargo
rustc
rustfmt
clippy
];
}