27 lines
609 B
Nix
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";
|
|
};
|
|
}
|