mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
26 lines
641 B
Nix
26 lines
641 B
Nix
{ lib, fetchFromGitHub, python3, bcc }:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "sockdump";
|
|
version = "unstable-2022-10-12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mechpen";
|
|
repo = pname;
|
|
rev = "005dcb056238c2e37ff378aef27c953208ffa08f";
|
|
hash = "sha256-X8PIUDxlcdPoD7+aLDWzlWV++P3mmu52BwY7irhypww=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ bcc ];
|
|
|
|
format = "other"; # none
|
|
|
|
installPhase = "install -D ${pname}.py $out/bin/${pname}";
|
|
|
|
meta = src.meta // {
|
|
description = "Dump unix domain socket traffic with bpf";
|
|
license = lib.licenses.unlicense;
|
|
maintainers = with lib.maintainers; [ ehmry ];
|
|
};
|
|
}
|