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

27 lines
708 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libpcap, perl }:
2015-02-05 13:52:14 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2015-02-05 13:52:14 +00:00
name = "dhcpdump-1.8";
src = fetchurl {
url = "http://archive.ubuntu.com/ubuntu/pool/universe/d/dhcpdump/dhcpdump_1.8.orig.tar.gz";
sha256 = "143iyzkqvhj4dscwqs75jvfr4wvzrs11ck3fqn5p7yv2h50vjpkd";
};
buildInputs = [libpcap perl];
hardeningDisable = [ "fortify" ];
2016-02-12 00:40:58 +00:00
2015-02-05 13:52:14 +00:00
installPhase = ''
mkdir -pv $out/bin
cp dhcpdump $out/bin
'';
meta = with lib; {
2015-02-05 13:52:14 +00:00
description = "A tool for visualization of DHCP packets as recorded and output by tcpdump to analyze DHCP server responses";
homepage = "http://www.mavetju.org/unix/dhcpdump-man.php";
2018-09-10 19:20:19 +00:00
platforms = platforms.linux;
license = licenses.bsd2;
2015-02-05 13:52:14 +00:00
};
}