Adding platformio as a nix dependency

This commit is contained in:
embr 2023-02-06 19:13:21 +01:00 committed by Gitea
parent ebe8b4f349
commit f53835a80a

View file

@ -1,5 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "afrapay";
packages = with pkgs; [ dotnet-sdk_7 ];
packages = with pkgs; [
dotnet-sdk_7
# ESP32 tooling (for MateCard)
platformio
];
}