From f0ebdeb33784ea6f29a07dc4f078abfa0fb78aec Mon Sep 17 00:00:00 2001 From: atse Date: Tue, 30 Jan 2024 16:05:09 +0800 Subject: [PATCH] Install llvm for devshell too Lets the developer use cargo build instead of nix build --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 803e774..f48fb3b 100644 --- a/flake.nix +++ b/flake.nix @@ -67,7 +67,8 @@ devShell.x86_64-linux = pkgs.mkShell { name = "thermostat-dev-shell"; buildInputs = with pkgs; [ - rust openocd dfu-util + rust llvm + openocd dfu-util ] ++ (with python3Packages; [ numpy matplotlib ]);