2018-10-24 20:34:55 +01:00
|
|
|
{ stdenv, fetchFromGitHub, python3Packages
|
|
|
|
, hackrf, rtl-sdr, airspy, limesuite }:
|
2017-02-13 21:16:12 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
name = "urh-${version}";
|
2018-12-14 03:31:31 +00:00
|
|
|
version = "2.5.1";
|
2017-02-13 21:16:12 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jopohl";
|
|
|
|
repo = "urh";
|
|
|
|
rev = "v${version}";
|
2018-12-14 03:31:31 +00:00
|
|
|
sha256 = "01n4swm2q2i10qvhfw1q04wxf48xwqlddfg7842ff98i2d9yxy13";
|
2017-02-13 21:16:12 +00:00
|
|
|
};
|
|
|
|
|
2018-10-24 20:34:55 +01:00
|
|
|
buildInputs = [ hackrf rtl-sdr airspy limesuite ];
|
2017-03-03 15:40:51 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
pyqt5 numpy psutil cython pyzmq
|
|
|
|
];
|
2017-02-13 21:16:12 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
inherit (src.meta) homepage;
|
|
|
|
description = "Universal Radio Hacker: investigate wireless protocols like a boss";
|
|
|
|
license = licenses.asl20;
|
2017-07-18 23:30:38 +01:00
|
|
|
platforms = platforms.linux;
|
2017-02-13 21:16:12 +00:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
};
|
|
|
|
}
|