depot/pkgs/tools/security/frida-tools/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

25 lines
643 B
Nix

{ lib, fetchPypi, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "frida-tools";
version = "12.5.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-vlqBN0E+bpfx+TLliZ3hgCaeOEdMRP/rmAfkmjOTqyA=";
};
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;
};
}