dnstake: init at 0.0.2 (#139869)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Fabian Affolter 2021-09-30 13:50:29 +02:00 committed by GitHub
parent d2a1da171f
commit b5da25f1c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "dnstake";
version = "0.0.2";
src = fetchFromGitHub {
owner = "pwnesia";
repo = pname;
rev = "v${version}";
sha256 = "0mjwnb0zyqnwk26f32v9vqxc9k6zcks9nn1595mf2hck5xwn86yk";
};
vendorSha256 = "1xhzalx1x8js449w1qs2qdwbnz2s8mmypz9maj7jzl5mqfyhlwlp";
meta = with lib; {
description = "Tool to check missing hosted DNS zones";
homepage = "https://github.com/pwnesia/dnstake";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -32766,6 +32766,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) ApplicationServices;
};
dnstake = callPackage ../tools/networking/dnstake {};
dnstracer = callPackage ../tools/networking/dnstracer {
inherit (darwin) libresolv;
};