add shell.nix

This commit is contained in:
Maciej Jur 2024-06-10 00:19:32 +02:00
parent 1f7c679f54
commit 30d9bdf499
Signed by: kamov
GPG key ID: 191CBFF5F72ECAFD

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
rust-analyzer
rustfmt
clippy
cargo
];
}