12 lines
160 B
Nix
12 lines
160 B
Nix
with import <nixpkgs> {} ;
|
|
|
|
mkShell {
|
|
buildInputs = [
|
|
rshell
|
|
esptool
|
|
(python3.withPackages (p: with p;[
|
|
pyserial
|
|
black
|
|
]))
|
|
];
|
|
}
|