2020-11-24 13:36:19 +00:00
|
|
|
{ newScope, fetchFromGitHub }:
|
2016-01-06 09:05:19 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
callPackage = newScope self;
|
|
|
|
|
2022-11-01 19:30:14 +00:00
|
|
|
version = "6.1.5";
|
2020-11-24 13:36:19 +00:00
|
|
|
|
|
|
|
# pypi tarballs don't contain tests - https://github.com/platformio/platformio-core/issues/1964
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "platformio";
|
|
|
|
repo = "platformio-core";
|
|
|
|
rev = "v${version}";
|
2022-11-01 19:30:14 +00:00
|
|
|
sha256 = "sha256-7Wx3O2zL5Dlbk7rooiHutpN63kAjhuYijgsZru+oaOI=";
|
2020-11-24 13:36:19 +00:00
|
|
|
};
|
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
self = {
|
2020-11-24 13:36:19 +00:00
|
|
|
platformio-chrootenv = callPackage ./chrootenv.nix { inherit version src; };
|
2016-01-06 09:05:19 +00:00
|
|
|
};
|
|
|
|
|
2022-08-16 15:57:36 +00:00
|
|
|
in
|
|
|
|
self
|