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

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

46 lines
914 B
Nix
Raw Normal View History

{ lib, buildFHSEnv, platformio-core }:
2018-04-07 21:00:21 +00:00
2018-01-09 18:59:33 +00:00
let
2018-04-07 21:00:21 +00:00
pio-pkgs = pkgs:
let
inherit (platformio-core) python;
2022-05-19 10:03:28 +00:00
in
(with pkgs; [
platformio-core
2018-01-03 16:12:17 +00:00
zlib
git
2022-05-19 10:03:28 +00:00
xdg-user-dirs
ncurses
2024-06-17 20:50:29 +00:00
udev
2018-04-07 21:00:21 +00:00
]) ++ (with python.pkgs; [
python
setuptools
pip
bottle
2016-01-06 09:05:19 +00:00
]);
2018-04-07 21:00:21 +00:00
2022-05-19 10:03:28 +00:00
in
buildFHSEnv {
2024-11-26 20:16:20 +00:00
pname = "platformio";
inherit (platformio-core) version;
2018-01-09 18:59:33 +00:00
targetPkgs = pio-pkgs;
# disabled temporarily because fastdiff no longer support 32bit
# multiPkgs = pio-pkgs;
2016-01-06 09:05:19 +00:00
2018-04-07 21:00:21 +00:00
meta = with lib; {
description = "Open source ecosystem for IoT development";
2019-09-04 05:59:22 +00:00
homepage = "https://platformio.org";
maintainers = with maintainers; [ mog ];
license = licenses.asl20;
platforms = with platforms; linux;
2016-01-06 09:05:19 +00:00
};
2018-01-03 16:12:17 +00:00
extraInstallCommands = ''
ln -s $out/bin/platformio $out/bin/pio
ln -s ${platformio-core.udev}/lib $out/lib
2018-01-03 16:12:17 +00:00
'';
2016-01-06 09:05:19 +00:00
runScript = "platformio";
}