lol

sockdump: unstable-2023-09-16 -> unstable-2023-12-11

Mostly interesting for
https://github.com/mechpen/sockdump/commit/1d3fac6e82c97c5f303b4082edf036ec052a1164,
which unbreaks the tool for the >6.5.7 kernel lineage.

Picnoir 7832dbe3 f4fb6487

+4 -4
+4 -4
pkgs/tools/networking/sockdump/default.nix
··· 2 2 3 3 python3.pkgs.buildPythonApplication rec { 4 4 pname = "sockdump"; 5 - version = "unstable-2023-09-16"; 5 + version = "unstable-2023-12-11"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mechpen"; 9 9 repo = pname; 10 - rev = "713759e383366feae76863881e851a6411c73b68"; 11 - hash = "sha256-q6jdwFhl2G9o2C0BVU6Xz7xizO00yaSQ2KSR/z4fixY="; 10 + rev = "d40ec77e960d021861220bc14a273c5dcad13160"; 11 + hash = "sha256-FLK1rgWvIoFGv/6+DtDhZGeOZrn7V1jYNS3S8qwL/dc="; 12 12 }; 13 13 14 14 propagatedBuildInputs = [ bcc ]; ··· 21 21 description = "Dump unix domain socket traffic with bpf"; 22 22 mainProgram = "sockdump"; 23 23 license = lib.licenses.unlicense; 24 - maintainers = with lib.maintainers; [ ehmry ]; 24 + maintainers = with lib.maintainers; [ ehmry picnoir ]; 25 25 }; 26 26 }