mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
30 lines
725 B
Nix
30 lines
725 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "dnstake";
|
|
version = "0.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pwnesia";
|
|
repo = "dnstake";
|
|
tag = "v${version}";
|
|
hash = "sha256-k6j7DIwK8YAKmEjn8JJO7XBcap9ui6cgUSJG7CeHAAM=";
|
|
};
|
|
|
|
vendorHash = "sha256-l3IKvcO10C+PVDX962tFWny7eMNC48ATIVqiHjpVH/Y=";
|
|
|
|
meta = with lib; {
|
|
description = "Tool to check missing hosted DNS zones";
|
|
homepage = "https://github.com/pwnesia/dnstake";
|
|
changelog = "https://github.com/pwnesia/dnstake/releases/tag/${src.tag}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "dnstake";
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|