lol

httpdump: init at 20210126-d2e0dea

+31
+29
pkgs/tools/security/httpdump/default.nix
··· 1 + { buildGoModule 2 + , fetchFromGitHub 3 + , lib 4 + , libpcap 5 + }: 6 + 7 + buildGoModule rec { 8 + pname = "httpdump"; 9 + version = "20210126-${lib.strings.substring 0 7 rev}"; 10 + rev = "d2e0deadca5f9ec2544cb252da3c450966d1860e"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "hsiafan"; 14 + repo = pname; 15 + inherit rev; 16 + sha256 = "0yh8kxy1k23lln09b614limwk9y59r7cn5qhbnzc06ga4mxfczv2"; 17 + }; 18 + 19 + vendorSha256 = "0lb1p63lzn1ngj54bar9add7w0azvgcq3azhv9c5glk3ykv9c3iy"; 20 + 21 + propagatedBuildInputs = [ libpcap ]; 22 + 23 + meta = with lib; { 24 + description = "Parse and display HTTP traffic from network device or pcap file"; 25 + homepage = "https://github.com/hsiafan/httpdump"; 26 + license = with licenses; [ bsd2 ]; 27 + maintainers = with maintainers; [ fab ]; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 5084 5084 5085 5085 http-getter = callPackage ../applications/networking/flent/http-getter.nix { }; 5086 5086 5087 + httpdump = callPackage ../tools/security/httpdump { }; 5088 + 5087 5089 httpie = callPackage ../tools/networking/httpie { }; 5088 5090 5089 5091 httping = callPackage ../tools/networking/httping {};