nixpkgs/pkgs/development/arduino/platformio/default.nix

22 lines
477 B
Nix
Raw Normal View History

2016-01-06 09:05:19 +00:00
{ newScope, fetchFromGitHub }:
2016-01-06 09:05:19 +00:00
let
callPackage = newScope self;
2021-03-18 09:47:35 +00:00
version = "5.1.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}";
2021-03-18 09:47:35 +00:00
sha256 = "1m9vq5r4g04n3ckmb3hrrc4ar5v31k6isc76bw4glrn2xb7r8c00";
};
2019-08-13 21:52:01 +00:00
self = {
platformio-chrootenv = callPackage ./chrootenv.nix { inherit version src; };
2016-01-06 09:05:19 +00:00
};
in self