platformioPackages: move packages inside to top-level

jopejoe1 2e074e65 aa2c78f7

+7 -21
pkgs/development/embedded/platformio/builder-prioritize-python-env-in-path.patch pkgs/by-name/pl/platformio-core/builder-prioritize-python-env-in-path.patch
pkgs/development/embedded/platformio/chrootenv.nix pkgs/by-name/pl/platformio-chrootenv/package.nix
pkgs/development/embedded/platformio/core.nix pkgs/by-name/pl/platformio-core/package.nix
-13
pkgs/development/embedded/platformio/default.nix
··· 1 - { newScope }: 2 - 3 - let 4 - callPackage = newScope self; 5 - 6 - self = { 7 - platformio-core = callPackage ./core.nix { }; 8 - 9 - platformio-chrootenv = callPackage ./chrootenv.nix { }; 10 - }; 11 - 12 - in 13 - self
pkgs/development/embedded/platformio/interpreter.patch pkgs/by-name/pl/platformio-core/interpreter.patch
pkgs/development/embedded/platformio/missing-udev-rules-nixos.patch pkgs/by-name/pl/platformio-core/missing-udev-rules-nixos.patch
pkgs/development/embedded/platformio/use-local-spdx-license-list.patch pkgs/by-name/pl/platformio-core/use-local-spdx-license-list.patch
+6
pkgs/top-level/aliases.nix
··· 1900 1900 pio = throw "pio has been removed due to lack of upstream maintenance"; # Added 2025-01-25 1901 1901 pipewire_0_2 = throw "pipewire_0_2 has been removed as it is outdated and no longer used"; # Added 2024-07-28 1902 1902 pipewire-media-session = throw "pipewire-media-session is no longer maintained and has been removed. Please use Wireplumber instead."; 1903 + platformioPackages = { 1904 + inherit 1905 + platformio-core 1906 + platformio-chrootenv 1907 + ; 1908 + }; # Added 2025-09-04 1903 1909 platypus = throw "platypus is unmaintained and has not merged Python3 support"; # Added 2025-03-20 1904 1910 pleroma-otp = throw "'pleroma-otp' has been renamed to/replaced by 'pleroma'"; # Converted to throw 2024-10-17 1905 1911 plex-media-player = throw "'plex-media-player' has been discontinued, the new official client is available as 'plex-desktop'"; # Added 2025-05-28
+1 -7
pkgs/top-level/all-packages.nix
··· 3958 3958 inherit (darwin) DarwinTools; 3959 3959 }; 3960 3960 3961 - platformioPackages = dontRecurseIntoAttrs (callPackage ../development/embedded/platformio { }); 3962 - platformio = 3963 - if stdenv.hostPlatform.isLinux then 3964 - platformioPackages.platformio-chrootenv 3965 - else 3966 - platformioPackages.platformio-core; 3967 - platformio-core = platformioPackages.platformio-core; 3961 + platformio = if stdenv.hostPlatform.isLinux then platformio-chrootenv else platformio-core; 3968 3962 3969 3963 playbar2 = libsForQt5.callPackage ../applications/audio/playbar2 { }; 3970 3964
-1
pkgs/top-level/packages-config.nix
··· 11 11 with super; 12 12 lib.mapAttrs (_: set: recurseIntoAttrs set) { 13 13 inherit (super) 14 - platformioPackages 15 14 rPackages 16 15 sourceHanPackages 17 16 ;