We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2880ed9 + da3e442 commit 2305056Copy full SHA for 2305056
pkgs/by-name/jn/jnitrace/package.nix
@@ -0,0 +1,30 @@
1
+{
2
+ lib,
3
+ fetchPypi,
4
+ python3Packages,
5
+}:
6
+
7
+python3Packages.buildPythonApplication rec {
8
+ pname = "jnitrace";
9
+ version = "3.3.1";
10
11
+ src = fetchPypi {
12
+ inherit pname version;
13
+ hash = "sha256-b8azmlYbNEFSUN3MjqpUqNlBTKT0JTLpCVBkk9Rx7+0=";
14
+ };
15
16
+ dependencies = with python3Packages; [
17
+ frida-python
18
+ colorama
19
+ hexdump
20
+ setuptools
21
+ ];
22
23
+ meta = {
24
+ description = "Frida based tool that traces usage of the JNI API in Android apps";
25
+ homepage = "https://github.com/chame1eon/jnitrace";
26
+ maintainers = [ lib.maintainers.axka ];
27
+ license = lib.licenses.mit;
28
+ mainProgram = "jnitrace";
29
30
+}
0 commit comments