File tree 2 files changed +27
-0
lines changed
2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -15354,6 +15354,8 @@ with pkgs;
15354
15354
15355
15355
unpaper = callPackage ../tools/graphics/unpaper { };
15356
15356
15357
+ urh = callPackage ../applications/misc/urh { };
15358
+
15357
15359
uucp = callPackage ../tools/misc/uucp { };
15358
15360
15359
15361
uvccapture = callPackage ../applications/video/uvccapture { };
You can’t perform that action at this time.
0 commit comments