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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
559 B
Nix
Raw Normal View History

{ newScope, fetchFromGitHub, python3Packages }:
2016-01-06 09:05:19 +00:00
let
callPackage = newScope self;
version = "6.1.6";
# 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-BEeMfdmAWqFbQUu8YKKrookQVgmhfZBqXnzeb2gfhms=";
};
2019-08-13 21:52:01 +00:00
self = {
platformio-core = python3Packages.callPackage ./core.nix { inherit version src; };
platformio-chrootenv = callPackage ./chrootenv.nix { };
2016-01-06 09:05:19 +00:00
};
2022-08-16 15:57:36 +00:00
in
self