Install llvm for devshell too

Lets the developer use cargo build instead of nix build
This commit is contained in:
atse 2024-01-30 16:05:09 +08:00
parent ae3d8b51d4
commit f0ebdeb337

View File

@ -67,7 +67,8 @@
devShell.x86_64-linux = pkgs.mkShell { devShell.x86_64-linux = pkgs.mkShell {
name = "thermostat-dev-shell"; name = "thermostat-dev-shell";
buildInputs = with pkgs; [ buildInputs = with pkgs; [
rust openocd dfu-util rust llvm
openocd dfu-util
] ++ (with python3Packages; [ ] ++ (with python3Packages; [
numpy matplotlib numpy matplotlib
]); ]);