15 lines
217 B
Nix
15 lines
217 B
Nix
|
{ pkgs ? import <nixpkgs> { } }:
|
||
|
|
||
|
with pkgs;
|
||
|
|
||
|
mkShell rec {
|
||
|
nativeBuildInputs = [
|
||
|
platformio
|
||
|
python39
|
||
|
xdg-user-dirs
|
||
|
];
|
||
|
buildInputs = [
|
||
|
|
||
|
];
|
||
|
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
|
||
|
}
|