26 lines
643 B
Nix
26 lines
643 B
Nix
|
{ lib, fetchPypi, python3Packages }:
|
||
|
|
||
|
python3Packages.buildPythonApplication rec {
|
||
|
pname = "frida-tools";
|
||
|
version = "12.1.2";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
hash = "sha256-9SlDyp1fLOzLqu6sxVqY2jwEzQjrnbzfQXIRoyviPJY=";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = with python3Packages; [
|
||
|
pygments
|
||
|
prompt-toolkit
|
||
|
colorama
|
||
|
frida-python
|
||
|
];
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|