2020-11-24 20:58:05 +00:00
|
|
|
{ newScope, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
callPackage = newScope self;
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
version = "6.1.6";
|
2020-11-24 20:58:05 +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}";
|
2023-02-02 18:25:31 +00:00
|
|
|
sha256 = "sha256-BEeMfdmAWqFbQUu8YKKrookQVgmhfZBqXnzeb2gfhms=";
|
2020-11-24 20:58:05 +00:00
|
|
|
};
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
self = {
|
2020-11-24 20:58:05 +00:00
|
|
|
platformio-chrootenv = callPackage ./chrootenv.nix { inherit version src; };
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-08-21 13:32:41 +00:00
|
|
|
in
|
|
|
|
self
|