mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
32 lines
719 B
Nix
32 lines
719 B
Nix
{ stdenv, fetchurl, libpcap, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tcpdump";
|
|
version = "4.9.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.tcpdump.org/release/${pname}-${version}.tar.gz";
|
|
sha256 = "0434vdcnbqaia672rggjzdn4bb8p8dchz559yiszzdk0sjrprm1c";
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs tests
|
|
'';
|
|
|
|
checkInputs = [ perl ];
|
|
|
|
buildInputs = [ libpcap ];
|
|
|
|
configureFlags = stdenv.lib.optional
|
|
(stdenv.hostPlatform != stdenv.buildPlatform)
|
|
"ac_cv_linux_vers=2";
|
|
|
|
meta = {
|
|
description = "Network sniffer";
|
|
homepage = "http://www.tcpdump.org/";
|
|
license = "BSD-style";
|
|
maintainers = with stdenv.lib.maintainers; [ globin ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|