3
0
Fork 0
forked from mirrors/nixpkgs

urh: init at 1.3.3

This commit is contained in:
Franz Pletz 2017-02-13 22:16:12 +01:00
parent 2ad8face66
commit 7b6a88c95e
No known key found for this signature in database
GPG key ID: 846FDED7792617B4
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonApplication rec {
name = "urh-${version}";
version = "1.3.3";
src = fetchFromGitHub {
owner = "jopohl";
repo = "urh";
rev = "v${version}";
sha256 = "137dsxs4i0lmxwp31g8fzwpwv1i8rsiir9gxvs5cmnwsrbcrdvxh";
};
propagatedBuildInputs = with python3Packages; [ pyqt5 numpy psutil cython ];
doCheck = false;
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Universal Radio Hacker: investigate wireless protocols like a boss";
license = licenses.asl20;
platform = platforms.all;
maintainers = with maintainers; [ fpletz ];
};
}

View file

@ -15354,6 +15354,8 @@ with pkgs;
unpaper = callPackage ../tools/graphics/unpaper { };
urh = callPackage ../applications/misc/urh { };
uucp = callPackage ../tools/misc/uucp { };
uvccapture = callPackage ../applications/video/uvccapture { };