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

29 lines
737 B
Nix
Raw Normal View History

2017-03-03 15:40:51 +00:00
{ stdenv, fetchFromGitHub, python3Packages, hackrf, rtl-sdr }:
2017-02-13 21:16:12 +00:00
python3Packages.buildPythonApplication rec {
name = "urh-${version}";
2017-07-31 23:32:59 +00:00
version = "1.7.1";
2017-02-13 21:16:12 +00:00
src = fetchFromGitHub {
owner = "jopohl";
repo = "urh";
rev = "v${version}";
2017-07-31 23:32:59 +00:00
sha256 = "00l1zs3qw89z1hlylprzrpf6nf7h22h0nw43h97gv775vaqqgczv";
2017-02-13 21:16:12 +00:00
};
2017-03-03 15:40:51 +00:00
buildInputs = [ hackrf rtl-sdr ];
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;
platforms = platforms.all;
2017-02-13 21:16:12 +00:00
maintainers = with maintainers; [ fpletz ];
};
}