lol
at 24.11-pre 25 lines 643 B view raw
1{ lib, fetchPypi, python3Packages }: 2 3python3Packages.buildPythonApplication rec { 4 pname = "frida-tools"; 5 version = "12.3.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 hash = "sha256-jtxn0a43kv9bLcY1CM3k0kf5K30Ne/FT10ohptWNwEU="; 10 }; 11 12 propagatedBuildInputs = with python3Packages; [ 13 pygments 14 prompt-toolkit 15 colorama 16 frida-python 17 ]; 18 19 meta = { 20 description = "Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers (client tools)"; 21 homepage = "https://www.frida.re/"; 22 maintainers = with lib.maintainers; [ s1341 ]; 23 license = lib.licenses.wxWindows; 24 }; 25}