Skip to content

Commit

Permalink
Merge pull request #44 from cyber-murmel/openocd-fhs-add-udev
Browse files Browse the repository at this point in the history
Add udev to targetPkgs for openocd FHS env
  • Loading branch information
mirrexagon authored Mar 23, 2024
2 parents 89c2451 + 4b542d0 commit 7972602
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/esp-idf/tools.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
# Dependencies for the various binary tools.
, zlib
, libusb1
, udev
}:

let
Expand All @@ -23,7 +24,7 @@ let
esp-clang = pkgs: (with pkgs; [ zlib libxml2 ]);
riscv32-esp-elf = pkgs: (with pkgs; [ ]);
esp32ulp-elf = pkgs: (with pkgs; [ ]);
openocd-esp32 = pkgs: (with pkgs; [ zlib libusb1 ]);
openocd-esp32 = pkgs: (with pkgs; [ zlib libusb1 udev ]);
};
# Map nix system strings to the platforms listed in tools.json
systemToToolPlatformString = {
Expand Down

0 comments on commit 7972602

Please sign in to comment.