dnstake: init at 0.0.2 (#139869)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
d2a1da171f
commit
b5da25f1c9
25
pkgs/tools/networking/dnstake/default.nix
Normal file
25
pkgs/tools/networking/dnstake/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -32766,6 +32766,8 @@ with pkgs;
|
|||||||
inherit (darwin.apple_sdk.frameworks) ApplicationServices;
|
inherit (darwin.apple_sdk.frameworks) ApplicationServices;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dnstake = callPackage ../tools/networking/dnstake {};
|
||||||
|
|
||||||
dnstracer = callPackage ../tools/networking/dnstracer {
|
dnstracer = callPackage ../tools/networking/dnstracer {
|
||||||
inherit (darwin) libresolv;
|
inherit (darwin) libresolv;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user