flake.nix remove cargo-generate

This commit is contained in:
franchioping 2026-03-16 14:27:20 +00:00
parent b3b1a7f009
commit 2fd4e2844e
1 changed files with 2 additions and 8 deletions

View File

@ -25,14 +25,8 @@
devShells = forEachSupportedSystem ({ pkgs }: {
default = pkgs.mkShell.override { } {
packages = with pkgs;
[
esp-idf-full
rustup
cargo-generate
openssl
stdenv.cc.cc.lib
libclang
] ++ (if system == "aarch64-darwin" then [ ] else [ gdb ]);
[ esp-idf-full rustup openssl stdenv.cc.cc.lib libclang ]
++ (if system == "aarch64-darwin" then [ ] else [ gdb ]);
shellHook = ''
export CLANGD_QUERY_DRIVER="$(which clang),$(which clang++)"
export CMAKE_EXPORT_COMPILE_COMMANDS=1