frida-tools: init at 12.1.2

This commit is contained in:
s1341 2023-06-08 14:52:36 +03:00
parent d5994dc91c
commit dd695d2d3a
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, python3 }:
python3.pkgs.buildPythonApplication rec {
pname = "frida-tools";
version = "12.1.2";
src = python3.pkgs.fetchPypi {
inherit pname version;
hash = "sha256-9SlDyp1fLOzLqu6sxVqY2jwEzQjrnbzfQXIRoyviPJY=";
};
propagatedBuildInputs = with python3.pkgs; [
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;
};
}

View file

@ -569,6 +569,8 @@ with pkgs;
frece = callPackage ../development/tools/frece { };
frida-tools = callPackage ../tools/security/frida-tools { };
frink = callPackage ../development/tools/frink { };
frugal = callPackage ../development/tools/frugal { };