crun: 1.8.3 -> 1.8.4
[NixPkgs.git] / pkgs / tools / networking / sockdump / default.nix
blobdb9edba0b2298adb3b7f2271964eb20a1507efaa
1 { lib, fetchFromGitHub, python3, bcc }:
3 python3.pkgs.buildPythonApplication rec {
4   pname = "sockdump";
5   version = "unstable-2022-10-12";
7   src = fetchFromGitHub {
8     owner = "mechpen";
9     repo = pname;
10     rev = "005dcb056238c2e37ff378aef27c953208ffa08f";
11     hash = "sha256-X8PIUDxlcdPoD7+aLDWzlWV++P3mmu52BwY7irhypww=";
12   };
14   propagatedBuildInputs = [ bcc ];
16   format = "other"; # none
18   installPhase = "install -D ${pname}.py $out/bin/${pname}";
20   meta = src.meta // {
21     description = "Dump unix domain socket traffic with bpf";
22     license = lib.licenses.unlicense;
23     maintainers = with lib.maintainers; [ ehmry ];
24   };