nixpkgs/pkgs/tools/networking/dnstracer/default.nix
Matthew Bauer 02297beade treewide: add version to packages
Lots of packages are missing versions in their name. This adds them
where appropriate. These were found with this command:

 $ nix-env -qa -f. | grep -v '\-[0-9A-Za-z.-_+]*$' | grep -v '^hook$'

See issue #41007.
2018-05-25 15:48:05 -05:00

28 lines
854 B
Nix

{ stdenv, fetchurl, libresolv }:
stdenv.mkDerivation rec {
version = "1.9";
name = "dnstracer-${version}";
src = fetchurl {
url = "http://www.mavetju.org/download/${name}.tar.gz";
sha256 = "177y58smnq2xhx9lbmj1gria371iv3r1d132l2gjvflkjsphig1f";
};
outputs = [ "out" "man" ];
setOutputFlags = false;
buildInputs = [] ++ stdenv.lib.optionals stdenv.isDarwin [ libresolv ];
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lresolv";
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;
};
}