mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2026-02-06 15:47:39 +03:00
16 lines
297 B
Nix
16 lines
297 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
platformio
|
|
python3
|
|
git
|
|
];
|
|
|
|
shellHook = ''
|
|
echo "PlatformIO development environment loaded"
|
|
echo "Run 'pio run' to build the firmware"
|
|
echo "Run 'pio run -t upload' to build and flash"
|
|
'';
|
|
}
|