about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2024-05-01 02:09:38 +0300
committerDoron Behar <doron.behar@gmail.com>2024-05-01 09:14:11 +0300
commitcaacdcc33b1bf16de30c8ac5d62bbbeb33b35ca3 (patch)
tree458a8a6c974974fe1bca1252ac9c347e47d0f121
parent7ea5c391ff0b4f34ea01e7f9a72f35545af12f70 (diff)
downloadnixlib-caacdcc33b1bf16de30c8ac5d62bbbeb33b35ca3.tar
nixlib-caacdcc33b1bf16de30c8ac5d62bbbeb33b35ca3.tar.gz
nixlib-caacdcc33b1bf16de30c8ac5d62bbbeb33b35ca3.tar.bz2
nixlib-caacdcc33b1bf16de30c8ac5d62bbbeb33b35ca3.tar.lz
nixlib-caacdcc33b1bf16de30c8ac5d62bbbeb33b35ca3.tar.xz
nixlib-caacdcc33b1bf16de30c8ac5d62bbbeb33b35ca3.tar.zst
nixlib-caacdcc33b1bf16de30c8ac5d62bbbeb33b35ca3.zip
uhd: mention buggy usrp_hwd.py utility
-rw-r--r--pkgs/applications/radio/uhd/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/applications/radio/uhd/default.nix b/pkgs/applications/radio/uhd/default.nix
index f04e9ad7549b..947d7d48108d 100644
--- a/pkgs/applications/radio/uhd/default.nix
+++ b/pkgs/applications/radio/uhd/default.nix
@@ -68,6 +68,18 @@ stdenv.mkDerivation (finalAttrs: {
   ] ++ optionals (enableUtils) [
     python3.pkgs.requests
     python3.pkgs.six
+
+    /* These deps are needed for the usrp_hwd.py utility, however even if they
+    would have been added here, the utility wouldn't have worked because it
+    depends on an old python library mprpc that is not supported for Python >
+    3.8. See also report upstream:
+    https://github.com/EttusResearch/uhd/issues/744
+
+    python3.pkgs.gevent
+    python3.pkgs.pyudev
+    python3.pkgs.pyroute2
+
+    */
   ];
   passthru = {
     runtimePython = python3.withPackages (ps: finalAttrs.pythonPath);