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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1,003 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages
, hackrf, rtl-sdr, airspy, limesuite, libiio
2021-12-27 18:50:35 +01:00
, libbladeRF
, qt5
, USRPSupport ? false, uhd }:
2017-02-13 22:16:12 +01:00
python3Packages.buildPythonApplication rec {
pname = "urh";
2023-01-31 00:50:27 +01:00
version = "2.9.4";
2017-02-13 22:16:12 +01:00
src = fetchFromGitHub {
owner = "jopohl";
repo = pname;
2023-01-31 00:50:27 +01:00
rev = "refs/tags/v${version}";
sha256 = "sha256-Hi0VqBtGeaXMsibxbHk+2FN8mzfpmkuDr37JRW4Fp+s=";
2017-02-13 22:16:12 +01:00
};
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
2021-12-27 18:50:35 +01:00
buildInputs = [ hackrf rtl-sdr airspy limesuite libiio libbladeRF ]
++ 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;
2023-07-23 11:58:00 +02:00
platforms = platforms.unix;
2017-02-13 22:16:12 +01:00
maintainers = with maintainers; [ fpletz ];
};
}