flake: Install LLVM in devShell too

So that developers can use `llvm-objcopy` in their devShells as well.
This commit is contained in:
atse 2024-01-30 16:05:09 +08:00 committed by sb10q
parent 52aa3890c1
commit 78ec77509f
1 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,8 @@
devShells.x86_64-linux.default = pkgs.mkShellNoCC {
name = "thermostat-dev-shell";
packages = with pkgs; [
rust openocd dfu-util
rust llvm
openocd dfu-util
] ++ (with python3Packages; [
numpy matplotlib
]);