From 4a27d6808e4fb7776cf732682d0b7a28dbb0743c Mon Sep 17 00:00:00 2001 From: vorboyvo Date: Fri, 27 Dec 2024 14:20:50 -0500 Subject: [PATCH] Added clippy to build inputs. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 090b387..b49f836 100644 --- a/flake.nix +++ b/flake.nix @@ -13,7 +13,7 @@ { devShells.${system}.default = pkgs.mkShell { buildInputs = with pkgs; [ - cargo rustc rust-analyzer + cargo rustc rust-analyzer clippy ]; }; };