lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+2 -2
+2 -2
pkgs/development/embedded/platformio/default.nix
··· 1 - { newScope, python3Packages }: 1 + { newScope }: 2 2 3 3 let 4 4 callPackage = newScope self; 5 5 6 6 self = { 7 - platformio-core = python3Packages.callPackage ./core.nix { }; 7 + platformio-core = callPackage ./core.nix { }; 8 8 9 9 platformio-chrootenv = callPackage ./chrootenv.nix { }; 10 10 };