platformio: needs xdg-user-dirs

This commit is contained in:
Peter Hoeg 2022-05-19 18:03:28 +08:00
parent f077686808
commit 1b467b894b

View file

@ -8,9 +8,11 @@ let
platformio = self.callPackage ./core.nix { inherit version src; };
};
};
in (with pkgs; [
in
(with pkgs; [
zlib
git
xdg-user-dirs
]) ++ (with python.pkgs; [
python
setuptools
@ -19,7 +21,8 @@ let
platformio
]);
in buildFHSUserEnv {
in
buildFHSUserEnv {
name = "platformio";
targetPkgs = pio-pkgs;