Skip to content

Commit 2305056

Browse files
authored
jnitrace: init at 3.3.1 (#392738)
2 parents 2880ed9 + da3e442 commit 2305056

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)