AfRApay/shell.nix
2023-02-06 19:35:49 +01:00

11 lines
168 B
Nix

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