Merge pull request #6425 from grwlf/siptools

Siptools
This commit is contained in:
lethalman
2015-02-26 15:00:17 +01:00
4 changed files with 90 additions and 0 deletions
@@ -0,0 +1,23 @@
{ stdenv, fetchurl, libpcap, perl }:
stdenv.mkDerivation rec {
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];
installPhase = ''
mkdir -pv $out/bin
cp dhcpdump $out/bin
'';
meta = {
description = "A tool for visualization of DHCP packets as recorded and output by tcpdump to analyze DHCP server responses";
homepage = http://packages.ubuntu.com/ru/lucid/dhcpdump;
platforms = stdenv.lib.platforms.linux;
};
}