1 { lib, stdenv, fetchurl, libpcap, ncurses }:
3 stdenv.mkDerivation rec {
5 version = "2014-09-15";
8 url = "http://dns.measurement-factory.com/tools/dnstop/src/dnstop-${lib.replaceStrings ["-"] [""] version}.tar.gz";
9 sha256 = "0yn5s2825l826506gclbcfk3lzllx9brk9rzja6yj5jv0013vc5l";
12 buildInputs = [ libpcap ncurses ];
15 mkdir -p $out/share/man/man8 $out/bin
19 description = "libpcap application that displays DNS traffic on your network";
20 homepage = "http://dns.measurement-factory.com/tools/dnstop";
21 license = lib.licenses.bsd3;
22 platforms = lib.platforms.unix;