nixpkgs/pkgs/by-name/fr/frida-tools/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
643 B
Nix
Raw Normal View History

{ lib, fetchPypi, python3Packages }:
2023-06-08 11:52:36 +00:00
python3Packages.buildPythonApplication rec {
2023-06-08 11:52:36 +00:00
pname = "frida-tools";
2024-08-21 23:02:19 +00:00
version = "12.5.0";
2023-06-08 11:52:36 +00:00
src = fetchPypi {
2023-06-08 11:52:36 +00:00
inherit pname version;
2024-08-21 23:02:19 +00:00
hash = "sha256-vlqBN0E+bpfx+TLliZ3hgCaeOEdMRP/rmAfkmjOTqyA=";
2023-06-08 11:52:36 +00:00
};
propagatedBuildInputs = with python3Packages; [
2023-06-08 11:52:36 +00:00
pygments
2023-06-09 11:42:58 +00:00
prompt-toolkit
2023-06-08 11:52:36 +00:00
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;
};
}