about summary refs log tree commit diff
path: root/pkgs/applications/radio
diff options
context:
space:
mode:
authorMatthew Leach <dev@mattleach.net>2021-12-27 17:50:35 +0000
committerMatthew Leach <dev@mattleach.net>2021-12-27 17:50:35 +0000
commit46bc2a5ff44b77b8f7817c94a9f2180278f2c212 (patch)
treee78aeb2a5d77c94c0f05cd8c01380f03b933865d /pkgs/applications/radio
parent54c0954df4cd6f6feb6d2bb3a57c2e950ebd4bb2 (diff)
downloadnixlib-46bc2a5ff44b77b8f7817c94a9f2180278f2c212.tar
nixlib-46bc2a5ff44b77b8f7817c94a9f2180278f2c212.tar.gz
nixlib-46bc2a5ff44b77b8f7817c94a9f2180278f2c212.tar.bz2
nixlib-46bc2a5ff44b77b8f7817c94a9f2180278f2c212.tar.lz
nixlib-46bc2a5ff44b77b8f7817c94a9f2180278f2c212.tar.xz
nixlib-46bc2a5ff44b77b8f7817c94a9f2180278f2c212.tar.zst
nixlib-46bc2a5ff44b77b8f7817c94a9f2180278f2c212.zip
urh: add bladerf support
Diffstat (limited to 'pkgs/applications/radio')
-rw-r--r--pkgs/applications/radio/urh/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/radio/urh/default.nix b/pkgs/applications/radio/urh/default.nix
index a5c687a8db20..29f8ec7b5e51 100644
--- a/pkgs/applications/radio/urh/default.nix
+++ b/pkgs/applications/radio/urh/default.nix
@@ -1,5 +1,6 @@
 { lib, fetchFromGitHub, python3Packages
 , hackrf, rtl-sdr, airspy, limesuite, libiio
+, libbladeRF
 , qt5
 , USRPSupport ? false, uhd }:
 
@@ -15,7 +16,7 @@ python3Packages.buildPythonApplication rec {
   };
 
   nativeBuildInputs = [ qt5.wrapQtAppsHook ];
-  buildInputs = [ hackrf rtl-sdr airspy limesuite libiio ]
+  buildInputs = [ hackrf rtl-sdr airspy limesuite libiio libbladeRF ]
     ++ lib.optional USRPSupport uhd;
 
   propagatedBuildInputs = with python3Packages; [