summary refs log tree commit diff
path: root/pkgs/development/arduino/platformio/default.nix
blob: 280fd496650cde2f824213bcc1b71c9a2f4b5512 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ newScope }:

let
  callPackage = newScope self;

  self = {
      platformio-chrootenv = callPackage ./chrootenv.nix { };
  };

in self