jnitrace: init at 3.3.1 (#392738)

This commit is contained in:
Aleksana 2025-05-23 16:18:46 +08:00 committed by GitHub
commit 23050565a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,30 @@
{
lib,
fetchPypi,
python3Packages,
}:
python3Packages.buildPythonApplication rec {
pname = "jnitrace";
version = "3.3.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-b8azmlYbNEFSUN3MjqpUqNlBTKT0JTLpCVBkk9Rx7+0=";
};
dependencies = with python3Packages; [
frida-python
colorama
hexdump
setuptools
];
meta = {
description = "Frida based tool that traces usage of the JNI API in Android apps";
homepage = "https://github.com/chame1eon/jnitrace";
maintainers = [ lib.maintainers.axka ];
license = lib.licenses.mit;
mainProgram = "jnitrace";
};
}