blob: 68bdc5fa195b92c4baa08da4e78421e08f4e9eeb (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
lib,
fetchPypi,
python3Packages,
}:
python3Packages.buildPythonApplication rec {
pname = "frida-tools";
version = "14.4.2";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-M+iKHoJpxIUUoEVYntL8PPR7B3TbBDiW/Oc8ZE15wo8=";
};
build-system = with python3Packages; [
setuptools
];
pythonRelaxDeps = [
"frida"
"websockets"
];
dependencies = with python3Packages; [
pygments
prompt-toolkit
colorama
frida-python
websockets
];
meta = {
description = "Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers (client tools)";
homepage = "https://www.frida.re/";
maintainers = with lib.maintainers; [ s1341 ];
license = lib.licenses.wxWindows;
};
}
|