nixpkgs/pkgs/development/embedded/platformio/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
237 B
Nix
Raw Normal View History

{ newScope, fetchFromGitHub, python3Packages }:
2016-01-06 09:05:19 +00:00
let
callPackage = newScope self;
2019-08-13 21:52:01 +00:00
self = {
platformio-core = python3Packages.callPackage ./core.nix { };
platformio-chrootenv = callPackage ./chrootenv.nix { };
2016-01-06 09:05:19 +00:00
};
2022-08-16 15:57:36 +00:00
in
self