nixpkgs/pkgs/tools/security/frida-tools/default.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 13:52:36 +02:00
python3Packages.buildPythonApplication rec {
2023-06-08 13:52:36 +02:00
pname = "frida-tools";
2024-01-18 09:05:38 +01:00
version = "12.3.0";
2023-06-08 13:52:36 +02:00
src = fetchPypi {
2023-06-08 13:52:36 +02:00
inherit pname version;
2024-01-18 09:05:38 +01:00
hash = "sha256-jtxn0a43kv9bLcY1CM3k0kf5K30Ne/FT10ohptWNwEU=";
2023-06-08 13:52:36 +02:00
};
propagatedBuildInputs = with python3Packages; [
2023-06-08 13:52:36 +02:00
pygments
2023-06-09 13:42:58 +02:00
prompt-toolkit
2023-06-08 13:52:36 +02: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;
};
}