Files
esp32-lua-api/flake.nix
T
2026-08-03 17:46:14 -04:00

35 lines
656 B
Nix

{
description = "Shared Lua API and UI toolkit for ESP32 firmware";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs =
{ nixpkgs, ... }:
let
systems = [
"x86_64-linux"
"aarch64-linux"
];
forAllSystems = nixpkgs.lib.genAttrs systems;
in
{
devShells = forAllSystems (
system:
let
pkgs = import nixpkgs { inherit system; };
in
{
default = pkgs.mkShell {
packages = with pkgs; [
gnumake
lua5_4
python3
];
};
}
);
};
}