nixpkgs/pkgs/tools/networking/dnstracer/default.nix

35 lines
1,013 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libresolv, perl }:
2017-10-07 19:05:25 +00:00
stdenv.mkDerivation rec {
2019-05-17 07:57:53 +00:00
version = "1.10";
pname = "dnstracer";
2017-10-07 19:05:25 +00:00
src = fetchurl {
2019-05-17 07:57:53 +00:00
url = "https://www.mavetju.org/download/${pname}-${version}.tar.bz2";
sha256 = "089bmrjnmsga2n0r4xgw4bwbf41xdqsnmabjxhw8lngg2pns1kb4";
2017-10-07 19:05:25 +00:00
};
outputs = [ "out" "man" ];
2019-05-17 07:57:53 +00:00
nativeBuildInputs = [ perl /* for pod2man */ ];
2017-10-07 19:05:25 +00:00
setOutputFlags = false;
2019-05-17 07:57:53 +00:00
installPhase = ''
install -Dm755 -t $out/bin dnstracer
install -Dm755 -t $man/share/man/man8 dnstracer.8
'';
2021-01-15 09:19:50 +00:00
buildInputs = [] ++ lib.optionals stdenv.isDarwin [ libresolv ];
2017-10-25 23:56:19 +00:00
2021-01-15 09:19:50 +00:00
NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-lresolv";
2017-10-25 23:56:19 +00:00
meta = with lib; {
description = "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";
2017-10-07 19:05:25 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ andir ];
platforms = platforms.all;
};
}