Skip to content

Commit

Permalink
monero-{cli,gui}: require udev only on Linux
Browse files Browse the repository at this point in the history
(cherry picked from commit 83a8e74)
  • Loading branch information
prusnak committed Sep 9, 2024
1 parent 54d0213 commit c08ed76
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/applications/blockchains/monero-cli/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ stdenv.mkDerivation rec {
hidapi
libusb1
protobuf_21
]
++ lib.optionals (trezorSupport && stdenv.isLinux) [
udev
];

Expand Down
2 changes: 2 additions & 0 deletions pkgs/applications/blockchains/monero-gui/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ stdenv.mkDerivation rec {
libusb1
protobuf_21
python3
]
++ lib.optionals (trezorSupport && stdenv.isLinux) [
udev
];

Expand Down

0 comments on commit c08ed76

Please sign in to comment.