2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-24 20:58:05 +00:00
|
|
|
{ newScope, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
callPackage = newScope self;
|
|
|
|
|
2020-11-24 20:58:05 +00:00
|
|
|
version = "5.0.3";
|
|
|
|
|
|
|
|
# pypi tarballs don't contain tests - https://github.com/platformio/platformio-core/issues/1964
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "platformio";
|
|
|
|
repo = "platformio-core";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0sf5dy0cmhy66rmk0hq1by7nrmf7qz0a99hrk55dpbp6r6vnk3hw";
|
|
|
|
};
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
in self
|