master
Elis Axelsson 2017-07-24 17:19:09 +02:00
commit 2ac6a02d5f
1 changed files with 12 additions and 0 deletions

12
default.nix Normal file
View File

@ -0,0 +1,12 @@
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "env";
env = buildEnv { name = name; paths = buildInputs; };
buildInputs = [
esptool
picocom
python3
python36Packages.pip
python36Packages.virtualenv
];
}