2021-09-30 12:50:29 +01:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "dnstake";
|
2022-01-24 07:39:20 +00:00
|
|
|
version = "0.1.0";
|
2021-09-30 12:50:29 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pwnesia";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-01-24 07:39:20 +00:00
|
|
|
sha256 = "sha256-XfZDRu1UrH5nVh1GQCQVaEamKorWSOxQZs556iDqfS8=";
|
2021-09-30 12:50:29 +01:00
|
|
|
};
|
|
|
|
|
2022-01-24 07:39:20 +00:00
|
|
|
vendorSha256 = "sha256-l3IKvcO10C+PVDX962tFWny7eMNC48ATIVqiHjpVH/Y=";
|
2021-09-30 12:50:29 +01:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|