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