build: add gcc, gtest to nix shell, fix native test framework

This commit is contained in:
Christoph Koehler
2026-07-01 08:19:27 -06:00
parent 1869b57d62
commit 4f7c1cb88f
2 changed files with 5 additions and 3 deletions
+4 -3
View File
@@ -1,11 +1,12 @@
{ pkgs ? import <nixpkgs> {} }:
let
{pkgs ? import <nixpkgs> {}}: let
in
pkgs.mkShell {
buildInputs = [
pkgs.platformio
pkgs.python3
pkgs.gcc
pkgs.gtest
# optional: needed as a programmer i.e. for esp32
pkgs.avrdude
];
}
}