frida-tools: init at 12.1.2
This commit is contained in:
parent
d5994dc91c
commit
dd695d2d3a
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/security/frida-tools/default.nix
Normal file
25
pkgs/tools/security/frida-tools/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue