about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/embedded/platformio/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/embedded/platformio/default.nix')
-rw-r--r--nixpkgs/pkgs/development/embedded/platformio/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/embedded/platformio/default.nix b/nixpkgs/pkgs/development/embedded/platformio/default.nix
new file mode 100644
index 000000000000..956d7dee06cd
--- /dev/null
+++ b/nixpkgs/pkgs/development/embedded/platformio/default.nix
@@ -0,0 +1,13 @@
+{ newScope, fetchFromGitHub, python3Packages }:
+
+let
+  callPackage = newScope self;
+
+  self = {
+    platformio-core = python3Packages.callPackage ./core.nix { };
+
+    platformio-chrootenv = callPackage ./chrootenv.nix { };
+  };
+
+in
+self