nixpkgs/pkgs/tools/networking/tcpdump/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
828 B
Nix
Raw Normal View History

2023-12-19 03:33:16 +00:00
{ lib, stdenv, fetchurl, libpcap, pkg-config, perl }:
stdenv.mkDerivation rec {
pname = "tcpdump";
version = "4.99.4";
src = fetchurl {
2023-08-08 15:22:19 +00:00
url = "https://www.tcpdump.org/release/tcpdump-${version}.tar.gz";
hash = "sha256-AjIjG7LynWvyQm5woIp+DGOg1ZqbRIY7f14jV6bkn+o=";
};
2018-08-08 21:38:52 +00:00
postPatch = ''
patchShebangs tests
'';
2023-12-19 03:33:16 +00:00
nativeBuildInputs = lib.optional (stdenv.hostPlatform.isStatic) [ pkg-config ];
nativeCheckInputs = [ perl ];
2018-08-08 21:38:52 +00:00
buildInputs = [ libpcap ];
2023-01-22 21:56:45 +00:00
configureFlags = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "ac_cv_linux_vers=2";
meta = with lib; {
description = "Network sniffer";
homepage = "https://www.tcpdump.org/";
license = licenses.bsd3;
maintainers = with maintainers; [ globin ];
platforms = platforms.unix;
2023-08-08 15:22:26 +00:00
mainProgram = "tcpdump";
};
}