nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / by-name / dn / dnstop / package.nix
blobeaf08d72820f7aca0452987df3938f7752174637
2   lib,
3   stdenv,
4   fetchurl,
5   libpcap,
6   ncurses,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "dnstop";
11   version = "2014-09-15";
13   src = fetchurl {
14     url = "http://dns.measurement-factory.com/tools/dnstop/src/dnstop-${
15       lib.replaceStrings [ "-" ] [ "" ] version
16     }.tar.gz";
17     sha256 = "0yn5s2825l826506gclbcfk3lzllx9brk9rzja6yj5jv0013vc5l";
18   };
20   buildInputs = [
21     libpcap
22     ncurses
23   ];
25   preInstall = ''
26     mkdir -p $out/share/man/man8 $out/bin
27   '';
29   meta = {
30     description = "libpcap application that displays DNS traffic on your network";
31     homepage = "http://dns.measurement-factory.com/tools/dnstop";
32     license = lib.licenses.bsd3;
33     platforms = lib.platforms.unix;
34     mainProgram = "dnstop";
35   };