mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
jnitrace: init at 3.3.1 (#392738)
This commit is contained in:
commit
23050565a1
1 changed files with 30 additions and 0 deletions
30
pkgs/by-name/jn/jnitrace/package.nix
Normal file
30
pkgs/by-name/jn/jnitrace/package.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue