1 { lib, fetchFromGitHub, python3, bcc }:
3 python3.pkgs.buildPythonApplication rec {
5 version = "unstable-2022-10-12";
7 src = fetchFromGitHub {
10 rev = "005dcb056238c2e37ff378aef27c953208ffa08f";
11 hash = "sha256-X8PIUDxlcdPoD7+aLDWzlWV++P3mmu52BwY7irhypww=";
14 propagatedBuildInputs = [ bcc ];
16 format = "other"; # none
18 installPhase = "install -D ${pname}.py $out/bin/${pname}";
21 description = "Dump unix domain socket traffic with bpf";
22 license = lib.licenses.unlicense;
23 maintainers = with lib.maintainers; [ ehmry ];