urh: init at 1.3.3
This commit is contained in:
parent
2ad8face66
commit
7b6a88c95e
25
pkgs/applications/misc/urh/default.nix
Normal file
25
pkgs/applications/misc/urh/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user