Files
rev-eng-nix-shell/binder-trace.nix
2024-10-23 18:15:05 +02:00

27 lines
609 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools
}:
buildPythonPackage rec {
pname = "binder-trace";
version = "1.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "foundryzero";
repo = "binder-trace";
rev = "refs/tags/${version}";
hash = "sha256-PoarAeQ8+C43rdi5ZL9ntxvqaLP/aHWxmoBri/EDP9g=";
};
build-system = [ setuptools ];
meta = with lib; {
description = "Binder Trace is a tool for intercepting and parsing Android Binder messages. Think of it as \"Wireshark for Binder\".";
homepage = "https://github.com/foundryzero/binder-trace";
};
}