From 30d9bdf499cbf1c0d14e94a38ba6e976c5f7be34 Mon Sep 17 00:00:00 2001 From: Maciej Jur Date: Mon, 10 Jun 2024 00:19:32 +0200 Subject: [PATCH] add shell.nix --- shell.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..b706844 --- /dev/null +++ b/shell.nix @@ -0,0 +1,10 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + rust-analyzer + rustfmt + clippy + cargo + ]; +}