From 7e814079533e0868589ab6267d9a4e4c5fe83b67 Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Wed, 24 Oct 2018 21:34:55 +0200 Subject: [PATCH] urh: add support for airspy and limesdr --- pkgs/applications/misc/urh/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/urh/default.nix b/pkgs/applications/misc/urh/default.nix index 2d370113873..b406df5b1e2 100644 --- a/pkgs/applications/misc/urh/default.nix +++ b/pkgs/applications/misc/urh/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchFromGitHub, python3Packages, hackrf, rtl-sdr }: +{ stdenv, fetchFromGitHub, python3Packages +, hackrf, rtl-sdr, airspy, limesuite }: python3Packages.buildPythonApplication rec { name = "urh-${version}"; @@ -11,7 +12,7 @@ python3Packages.buildPythonApplication rec { sha256 = "0cwbqcv0yffg6fa3g4zknwffa6119i6827w6jm74fhlfa9kwy34c"; }; - buildInputs = [ hackrf rtl-sdr ]; + buildInputs = [ hackrf rtl-sdr airspy limesuite ]; propagatedBuildInputs = with python3Packages; [ pyqt5 numpy psutil cython pyzmq ];