python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / dnstop / default.nix
blob7669f6eec8f954c82e1888134a8a7a0b835c4ec1
1 { lib, stdenv, fetchurl, libpcap, ncurses }:
3 stdenv.mkDerivation rec {
4   pname = "dnstop";
5   version = "2014-09-15";
7   src = fetchurl {
8     url = "http://dns.measurement-factory.com/tools/dnstop/src/dnstop-${lib.replaceStrings ["-"] [""] version}.tar.gz";
9     sha256 = "0yn5s2825l826506gclbcfk3lzllx9brk9rzja6yj5jv0013vc5l";
10   };
12   buildInputs = [ libpcap ncurses ];
14   preInstall = ''
15     mkdir -p $out/share/man/man8 $out/bin
16   '';
18   meta = {
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;
23   };