mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-03-29 17:20:41 +00:00
There are many systems that chose to not have a global python install, namely my own systems :p. I end up having to nix-shell -p python3 anytime I want to run the build.sh as the last step uf2conv depends on python
12 lines
201 B
Nix
12 lines
201 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
let
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.platformio
|
|
pkgs.python3
|
|
# optional: needed as a programmer i.e. for esp32
|
|
pkgs.avrdude
|
|
];
|
|
}
|