Skip to content

Commit 7b6a88c

Browse files
committedFeb 13, 2017
urh: init at 1.3.3
1 parent 2ad8fac commit 7b6a88c

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
 
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{ stdenv, fetchFromGitHub, python3Packages }:
2+
3+
python3Packages.buildPythonApplication rec {
4+
name = "urh-${version}";
5+
version = "1.3.3";
6+
7+
src = fetchFromGitHub {
8+
owner = "jopohl";
9+
repo = "urh";
10+
rev = "v${version}";
11+
sha256 = "137dsxs4i0lmxwp31g8fzwpwv1i8rsiir9gxvs5cmnwsrbcrdvxh";
12+
};
13+
14+
propagatedBuildInputs = with python3Packages; [ pyqt5 numpy psutil cython ];
15+
16+
doCheck = false;
17+
18+
meta = with stdenv.lib; {
19+
inherit (src.meta) homepage;
20+
description = "Universal Radio Hacker: investigate wireless protocols like a boss";
21+
license = licenses.asl20;
22+
platform = platforms.all;
23+
maintainers = with maintainers; [ fpletz ];
24+
};
25+
}

‎pkgs/top-level/all-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -15354,6 +15354,8 @@ with pkgs;
1535415354

1535515355
unpaper = callPackage ../tools/graphics/unpaper { };
1535615356

15357+
urh = callPackage ../applications/misc/urh { };
15358+
1535715359
uucp = callPackage ../tools/misc/uucp { };
1535815360

1535915361
uvccapture = callPackage ../applications/video/uvccapture { };

0 commit comments

Comments
 (0)