tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
httpdump: init at 20210126-d2e0dea
Fabian Affolter
5 years ago
e9b042a2
b749b2af
+31
2 changed files
expand all
collapse all
unified
split
pkgs
tools
security
httpdump
default.nix
top-level
all-packages.nix
+29
pkgs/tools/security/httpdump/default.nix
reviewed
···
1
1
+
{ buildGoModule
2
2
+
, fetchFromGitHub
3
3
+
, lib
4
4
+
, libpcap
5
5
+
}:
6
6
+
7
7
+
buildGoModule rec {
8
8
+
pname = "httpdump";
9
9
+
version = "20210126-${lib.strings.substring 0 7 rev}";
10
10
+
rev = "d2e0deadca5f9ec2544cb252da3c450966d1860e";
11
11
+
12
12
+
src = fetchFromGitHub {
13
13
+
owner = "hsiafan";
14
14
+
repo = pname;
15
15
+
inherit rev;
16
16
+
sha256 = "0yh8kxy1k23lln09b614limwk9y59r7cn5qhbnzc06ga4mxfczv2";
17
17
+
};
18
18
+
19
19
+
vendorSha256 = "0lb1p63lzn1ngj54bar9add7w0azvgcq3azhv9c5glk3ykv9c3iy";
20
20
+
21
21
+
propagatedBuildInputs = [ libpcap ];
22
22
+
23
23
+
meta = with lib; {
24
24
+
description = "Parse and display HTTP traffic from network device or pcap file";
25
25
+
homepage = "https://github.com/hsiafan/httpdump";
26
26
+
license = with licenses; [ bsd2 ];
27
27
+
maintainers = with maintainers; [ fab ];
28
28
+
};
29
29
+
}
+2
pkgs/top-level/all-packages.nix
reviewed
···
5084
5084
5085
5085
http-getter = callPackage ../applications/networking/flent/http-getter.nix { };
5086
5086
5087
5087
+
httpdump = callPackage ../tools/security/httpdump { };
5088
5088
+
5087
5089
httpie = callPackage ../tools/networking/httpie { };
5088
5090
5089
5091
httping = callPackage ../tools/networking/httping {};