depot/pkgs/tools/networking/dnstop/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

25 lines
702 B
Nix

{ lib, stdenv, fetchurl, libpcap, ncurses }:
stdenv.mkDerivation rec {
pname = "dnstop";
version = "2014-09-15";
src = fetchurl {
url = "http://dns.measurement-factory.com/tools/dnstop/src/dnstop-${lib.replaceStrings ["-"] [""] version}.tar.gz";
sha256 = "0yn5s2825l826506gclbcfk3lzllx9brk9rzja6yj5jv0013vc5l";
};
buildInputs = [ libpcap ncurses ];
preInstall = ''
mkdir -p $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 = lib.licenses.bsd3;
platforms = lib.platforms.unix;
mainProgram = "dnstop";
};
}