about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2022-05-19 18:03:28 +0800
committerPeter Hoeg <peter@hoeg.com>2022-06-05 17:37:35 +0200
commit1b467b894b7dd9c9fc6ceff3f6c7a5ce4c24555e (patch)
tree71cfb39614834e86cce135ee7f6f217ad9b4e3e1
parentf0776868088bfbce8cc7b82386dd8574814f6d3f (diff)
platformio: needs xdg-user-dirs
-rw-r--r--pkgs/development/embedded/platformio/chrootenv.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/embedded/platformio/chrootenv.nix b/pkgs/development/embedded/platformio/chrootenv.nix
index 138e7186624a1..fbabfe982de01 100644
--- a/pkgs/development/embedded/platformio/chrootenv.nix
+++ b/pkgs/development/embedded/platformio/chrootenv.nix
@@ -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;