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

39 lines
979 B
Nix
Raw Normal View History

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