picture-frame/shell.nix

15 lines
237 B
Nix

{ pkgs ? import <nixpkgs> { }, ... }:
with pkgs;
mkShell {
buildInputs = [
go
python3
platformio
];
# Disabling hardening is required for go debugger to work. Not needed for packaging.
NIX_HARDENING_ENABLE = "";
}