Adding dnstop
svn path=/nixpkgs/trunk/; revision=30209
This commit is contained in:
parent
583fbe814f
commit
15c16f50aa
22
pkgs/tools/networking/dnstop/default.nix
Normal file
22
pkgs/tools/networking/dnstop/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchurl, libpcap, ncurses }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "dnstop-20110502";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://dns.measurement-factory.com/tools/dnstop/src/dnstop-20110502.tar.gz;
|
||||
sha256 = "0ra3xjf7dwvq5xm6qbqd2al35vigibihy46rsz1860qrn3wycy12";
|
||||
};
|
||||
|
||||
buildInputs = [ libpcap ncurses ];
|
||||
|
||||
preInstall = ''
|
||||
ensureDir $out/share/man/man8 $out/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "libpcap application that displays DNS traffic on your network";
|
||||
homepage = "http://dns.measurement-factory.com/tools/dnstop";
|
||||
license = "BSD";
|
||||
};
|
||||
}
|
@ -571,6 +571,8 @@ let
|
||||
# TODO i18n can be installed as well, implement it?
|
||||
};
|
||||
|
||||
dnstop = callPackage ../tools/networking/dnstop { };
|
||||
|
||||
dhcp = callPackage ../tools/networking/dhcp { };
|
||||
|
||||
dhcpcd = callPackage ../tools/networking/dhcpcd { };
|
||||
|
Loading…
Reference in New Issue
Block a user