nixpkgs-suyu/pkgs/applications/radio/urh/default.nix

39 lines
971 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages
, hackrf, rtl-sdr, airspy, limesuite, libiio
, qt5
, USRPSupport ? false, uhd }:
2017-02-13 22:16:12 +01:00
python3Packages.buildPythonApplication rec {
pname = "urh";
2021-08-15 02:56:58 +02:00
version = "2.9.2";
2017-02-13 22:16:12 +01:00
src = fetchFromGitHub {
owner = "jopohl";
repo = pname;
2017-02-13 22:16:12 +01:00
rev = "v${version}";
2021-08-15 02:56:58 +02:00
sha256 = "0ibcr2ypnyl2aq324sbmmr18ksxszg81yrhybawx46ba9vym6j99";
2017-02-13 22:16:12 +01:00
};
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
buildInputs = [ hackrf rtl-sdr airspy limesuite libiio ]
++ lib.optional USRPSupport uhd;
2017-03-03 16:40:51 +01:00
propagatedBuildInputs = with python3Packages; [
pyqt5 numpy psutil cython pyzmq pyaudio setuptools
2017-03-03 16:40:51 +01:00
];
2017-02-13 22:16:12 +01:00
postFixup = ''
wrapQtApp $out/bin/urh
'';
2017-02-13 22:16:12 +01:00
doCheck = false;
meta = with lib; {
homepage = "https://github.com/jopohl/urh";
2017-02-13 22:16:12 +01:00
description = "Universal Radio Hacker: investigate wireless protocols like a boss";
license = licenses.gpl3;
platforms = platforms.linux;
2017-02-13 22:16:12 +01:00
maintainers = with maintainers; [ fpletz ];
};
}