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;
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";
};
2019-08-13 22:52:01 +01:00
self = {
platformio-chrootenv = callPackage ./chrootenv.nix { inherit version src; };
2016-01-06 09:05:19 +00:00
};
in self