initial commit

This commit is contained in:
2024-10-23 18:15:05 +02:00
commit 346286b9e9
8 changed files with 355 additions and 0 deletions

25
frida-tools.nix Normal file
View File

@@ -0,0 +1,25 @@
{ lib, fetchPypi, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "frida-tools";
version = "12.3.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-jtxn0a43kv9bLcY1CM3k0kf5K30Ne/FT10ohptWNwEU=";
};
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;
};
}