2019-08-01 17:56:06 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, python3Packages
|
|
|
|
, hackrf, rtl-sdr, airspy, limesuite, libiio
|
|
|
|
, USRPSupport ? false, uhd }:
|
2017-02-13 21:16:12 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
2019-06-03 08:31:13 +01:00
|
|
|
pname = "urh";
|
2019-07-20 23:41:13 +01:00
|
|
|
version = "2.7.3";
|
2017-02-13 21:16:12 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jopohl";
|
2019-06-03 08:31:13 +01:00
|
|
|
repo = pname;
|
2017-02-13 21:16:12 +00:00
|
|
|
rev = "v${version}";
|
2019-07-20 23:41:13 +01:00
|
|
|
sha256 = "1jrrj9c4ddm37m8j0g693xjimpnlvx7lan5kxish5p14xpwdak35";
|
2017-02-13 21:16:12 +00:00
|
|
|
};
|
|
|
|
|
2019-08-01 17:56:06 +01:00
|
|
|
buildInputs = [ hackrf rtl-sdr airspy limesuite libiio ]
|
|
|
|
++ lib.optional USRPSupport uhd;
|
|
|
|
|
2017-03-03 15:40:51 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2019-08-01 17:56:06 +01:00
|
|
|
pyqt5 numpy psutil cython pyzmq pyaudio
|
2017-03-03 15:40:51 +00:00
|
|
|
];
|
2017-02-13 21:16:12 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2019-08-01 17:56:06 +01:00
|
|
|
meta = with lib; {
|
2019-06-03 08:31:13 +01:00
|
|
|
homepage = "https://github.com/jopohl/urh";
|
2017-02-13 21:16:12 +00:00
|
|
|
description = "Universal Radio Hacker: investigate wireless protocols like a boss";
|
2019-06-03 08:31:13 +01:00
|
|
|
license = licenses.gpl3;
|
2017-07-18 23:30:38 +01:00
|
|
|
platforms = platforms.linux;
|
2017-02-13 21:16:12 +00:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
};
|
|
|
|
}
|