6bca93ce69
<https://github.com/platformio/platformio-core/releases/tag/v6.0.0> <https://github.com/platformio/platformio-core/releases/tag/v6.0.1>
21 lines
476 B
Nix
21 lines
476 B
Nix
|
|
{ newScope, fetchFromGitHub }:
|
|
|
|
let
|
|
callPackage = newScope self;
|
|
|
|
version = "6.0.1";
|
|
|
|
# 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 = "sha256-noLdQctAaMNmfuxI3iybHFx3Q9aTr3gZaUZ+/uO+fnA=";
|
|
};
|
|
|
|
self = {
|
|
platformio-chrootenv = callPackage ./chrootenv.nix { inherit version src; };
|
|
};
|
|
|
|
in self
|