fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchFromGitHub, python3 }:
2
3python3.pkgs.buildPythonApplication rec {
4 name = "esptool-${version}";
5 version = "1.3";
6
7 src = fetchFromGitHub {
8 owner = "espressif";
9 repo = "esptool";
10 rev = "v${version}";
11 sha256 = "0112fybkz4259gyvhcs18wa6938jp6w7clk66kpd0d1dg70lz1h6";
12 };
13
14 propagatedBuildInputs = with python3.pkgs; [ pyserial ];
15
16 doCheck = false; # FIXME: requires packaging some new deps
17
18 meta = with stdenv.lib; {
19 description = "ESP8266 and ESP32 serial bootloader utility";
20 homepage = https://github.com/espressif/esptool;
21 license = licenses.gpl2;
22 maintainers = [ maintainers.dezgeg ];
23 platforms = platforms.linux;
24 };
25}