Merge pull request #30203 from andir/add-dnstracer

dnstracer: init at 1.9
This commit is contained in:
Jörg Thalheim 2017-10-07 22:11:22 +01:00 committed by GitHub
commit a08837622d
3 changed files with 26 additions and 0 deletions

View file

@ -41,6 +41,7 @@
amorsillo = "Andrew Morsillo <andrew.morsillo@gmail.com>";
AndersonTorres = "Anderson Torres <torres.anderson.85@gmail.com>";
anderspapitto = "Anders Papitto <anderspapitto@gmail.com>";
andir = "Andreas Rammhold <andreas@rammhold.de>";
andres = "Andres Loeh <ksnixos@andres-loeh.de>";
andrewrk = "Andrew Kelley <superjoe30@gmail.com>";
andsild = "Anders Sildnes <andsild@gmail.com>";

View file

@ -0,0 +1,23 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "1.9";
name = "dnstracer";
src = fetchurl {
url = "http://www.mavetju.org/download/dnstracer-${version}.tar.gz";
sha256 = "177y58smnq2xhx9lbmj1gria371iv3r1d132l2gjvflkjsphig1f";
};
outputs = [ "out" "man" ];
setOutputFlags = false;
meta = with stdenv.lib; {
description = "Dnstracer determines where a given Domain Name Server (DNS) gets its information from, and follows the chain of DNS servers back to the servers which know the data.";
homepage = http://www.mavetju.org/unix/general.php;
license = licenses.bsd2;
maintainers = with maintainers; [ andir ];
platforms = platforms.all;
};
}

View file

@ -19677,4 +19677,6 @@ with pkgs;
};
duti = callPackage ../os-specific/darwin/duti {};
dnstracer = callPackage ../tools/networking/dnstracer {};
}