mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
6f2ef6811e
https://github.com/platformio/platformio-core/releases/tag/v6.1.7 https://github.com/platformio/platformio-core/releases/tag/v6.1.8 https://github.com/platformio/platformio-core/releases/tag/v6.1.9 https://github.com/platformio/platformio-core/releases/tag/v6.1.10 https://github.com/platformio/platformio-core/releases/tag/v6.1.11 Fixes support for ESP-IDF among other plugins, by replacing the path to the python interpreter with one that has all dependencies wrapped. Closes: #227230 Co-Authored-By: Joerie de Gram <j.de.gram@gmail.com>
13 lines
494 B
Diff
13 lines
494 B
Diff
diff --git a/platformio/exception.py b/platformio/exception.py
|
|
index 80ffb496..ea064f97 100644
|
|
--- a/platformio/exception.py
|
|
+++ b/platformio/exception.py
|
|
@@ -49,6 +49,7 @@ class MissedUdevRules(InvalidUdevRules):
|
|
MESSAGE = (
|
|
"Warning! Please install `99-platformio-udev.rules`. \nMore details: "
|
|
"https://docs.platformio.org/en/latest/core/installation/udev-rules.html"
|
|
+ "On NixOS set `services.udev.packages = with pkgs; [ platformio-core.udev ];`."
|
|
)
|
|
|
|
|