nixpkgs/pkgs/development/embedded/platformio/default.nix
2022-11-08 07:01:42 -08:00

22 lines
475 B
Nix

{ newScope, fetchFromGitHub }:
let
callPackage = newScope self;
version = "6.1.5";
# 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-7Wx3O2zL5Dlbk7rooiHutpN63kAjhuYijgsZru+oaOI=";
};
self = {
platformio-chrootenv = callPackage ./chrootenv.nix { inherit version src; };
};
in
self