mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Merge pull request #30203 from andir/add-dnstracer
dnstracer: init at 1.9
This commit is contained in:
commit
a08837622d
@ -41,6 +41,7 @@
|
|||||||
amorsillo = "Andrew Morsillo <andrew.morsillo@gmail.com>";
|
amorsillo = "Andrew Morsillo <andrew.morsillo@gmail.com>";
|
||||||
AndersonTorres = "Anderson Torres <torres.anderson.85@gmail.com>";
|
AndersonTorres = "Anderson Torres <torres.anderson.85@gmail.com>";
|
||||||
anderspapitto = "Anders Papitto <anderspapitto@gmail.com>";
|
anderspapitto = "Anders Papitto <anderspapitto@gmail.com>";
|
||||||
|
andir = "Andreas Rammhold <andreas@rammhold.de>";
|
||||||
andres = "Andres Loeh <ksnixos@andres-loeh.de>";
|
andres = "Andres Loeh <ksnixos@andres-loeh.de>";
|
||||||
andrewrk = "Andrew Kelley <superjoe30@gmail.com>";
|
andrewrk = "Andrew Kelley <superjoe30@gmail.com>";
|
||||||
andsild = "Anders Sildnes <andsild@gmail.com>";
|
andsild = "Anders Sildnes <andsild@gmail.com>";
|
||||||
|
23
pkgs/tools/networking/dnstracer/default.nix
Normal file
23
pkgs/tools/networking/dnstracer/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -19677,4 +19677,6 @@ with pkgs;
|
|||||||
};
|
};
|
||||||
|
|
||||||
duti = callPackage ../os-specific/darwin/duti {};
|
duti = callPackage ../os-specific/darwin/duti {};
|
||||||
|
|
||||||
|
dnstracer = callPackage ../tools/networking/dnstracer {};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user