From 262ee41eff2a5ee01a750263d8677d6ae79c9053 Mon Sep 17 00:00:00 2001 From: Atemu Date: Sun, 21 May 2023 11:33:05 +0200 Subject: [PATCH] esptool_3: enable on Darwin Flashed an esp32 with it via esphome --- pkgs/tools/misc/esptool/3.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/esptool/3.nix b/pkgs/tools/misc/esptool/3.nix index 48131338c51d..dcf30ea743df 100644 --- a/pkgs/tools/misc/esptool/3.nix +++ b/pkgs/tools/misc/esptool/3.nix @@ -68,6 +68,6 @@ python3.pkgs.buildPythonApplication rec { homepage = "https://github.com/espressif/esptool"; license = licenses.gpl2Plus; maintainers = with maintainers; [ hexa ]; - platforms = platforms.linux; + platforms = with platforms; linux ++ darwin; }; }