summary refs log tree commit diff
diff options
context:
space:
mode:
authorJos van Bakel <jos@codeaddict.org>2023-01-27 11:57:45 +0100
committerJos van Bakel <jos@codeaddict.org>2023-01-27 11:57:45 +0100
commit4271c9ca595c6fce3d8017b6c22237e18dd9f0d0 (patch)
treedc00983af8634ebb1c07375e79d3da8c7fa825ce
parent1aa56ee778739a102e5a086af4e5cbd116b99304 (diff)
downloadnixpkgs-4271c9ca595c6fce3d8017b6c22237e18dd9f0d0.tar
nixpkgs-4271c9ca595c6fce3d8017b6c22237e18dd9f0d0.tar.gz
nixpkgs-4271c9ca595c6fce3d8017b6c22237e18dd9f0d0.tar.bz2
nixpkgs-4271c9ca595c6fce3d8017b6c22237e18dd9f0d0.tar.lz
nixpkgs-4271c9ca595c6fce3d8017b6c22237e18dd9f0d0.tar.xz
nixpkgs-4271c9ca595c6fce3d8017b6c22237e18dd9f0d0.tar.zst
nixpkgs-4271c9ca595c6fce3d8017b6c22237e18dd9f0d0.zip
platformio: fix udev path
-rw-r--r--pkgs/development/embedded/platformio/chrootenv.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/embedded/platformio/chrootenv.nix b/pkgs/development/embedded/platformio/chrootenv.nix
index 75f9adf0d3e..40aa4233741 100644
--- a/pkgs/development/embedded/platformio/chrootenv.nix
+++ b/pkgs/development/embedded/platformio/chrootenv.nix
@@ -38,7 +38,7 @@ buildFHSUserEnv {
     mkdir -p $out/lib/udev/rules.d
 
     ln -s $out/bin/platformio $out/bin/pio
-    ln -s ${src}/scripts/99-platformio-udev.rules $out/lib/udev/rules.d/99-platformio-udev.rules
+    ln -s ${src}/platformio/assets/system/99-platformio-udev.rules $out/lib/udev/rules.d/99-platformio-udev.rules
   '';
 
   runScript = "platformio";