fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
13 lines
220 B
Nix
13 lines
220 B
Nix
{ newScope, python3Packages }:
|
|
|
|
let
|
|
callPackage = newScope self;
|
|
|
|
self = {
|
|
platformio-core = python3Packages.callPackage ./core.nix { };
|
|
|
|
platformio-chrootenv = callPackage ./chrootenv.nix { };
|
|
};
|
|
|
|
in
|
|
self
|