Files
nixpkgs/pkgs/development/embedded/platformio/default.nix
Robert Schütz fd715561cb platformio: fix eval
It used to fail with

    error: do not use python3Packages when building Python packages, specify each used package as a separate argument
2025-04-02 20:41:53 -07:00

14 lines
187 B
Nix

{ newScope }:
let
callPackage = newScope self;
self = {
platformio-core = callPackage ./core.nix { };
platformio-chrootenv = callPackage ./chrootenv.nix { };
};
in
self