about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/arduino/platformio/chrootenv.nix
blob: 182f8fbefab528ad14762c3e999040c84560d01f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{ lib, buildFHSUserEnv }:

let
  pio-pkgs = pkgs:
    let
      python = pkgs.python.override {
        packageOverrides = self: super: {

          # https://github.com/platformio/platformio-core/issues/349
          click = super.click.overridePythonAttrs (oldAttrs: rec {
            version = "5.1";
            src = oldAttrs.src.override {
              inherit version;
              sha256 = "678c98275431fad324275dec63791e4a17558b40e5a110e20a82866139a85a5a";
            };
            postPatch = "";
          });

          platformio = self.callPackage ./core.nix { };
        };
      };
    in (with pkgs; [
      zlib
      git
    ]) ++ (with python.pkgs; [
      python
      setuptools
      pip
      bottle
      platformio
    ]);

in buildFHSUserEnv {
  name = "platformio";

  targetPkgs = pio-pkgs;
  multiPkgs = pio-pkgs;

  meta = with lib; {
    description = "An open source ecosystem for IoT development";
    homepage = http://platformio.org;
    maintainers = with maintainers; [ mog ];
    license = licenses.asl20;
    platforms = with platforms; linux;
  };

  extraInstallCommands = ''
    ln -s $out/bin/platformio $out/bin/pio
  '';

  runScript = "platformio";
}