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

let
  callPackage = newScope self;

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

in self