dnslookup: init at 1.11.1 (#349630)

This commit is contained in:
Philip Taron 2024-10-18 19:15:55 -07:00 committed by GitHub
commit 13600d7dc1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,28 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "dnslookup";
version = "1.11.1";
src = fetchFromGitHub {
owner = "ameshkov";
repo = "dnslookup";
rev = "refs/tags/v${version}";
hash = "sha256-zgEW4ANIlwF0f6YqTQicGhGgLc9RaL7Xy0wg/ICzOK4=";
};
vendorHash = "sha256-pdnKYsXBw/IjakUyQym4thnO3gXgvwNm80Ha8AUVt54=";
meta = {
changelog = "https://github.com/ameshkov/dnslookup/releases/tag/v${version}";
description = "Simple command line utility to make DNS lookups to the specified server";
homepage = "https://github.com/ameshkov/dnslookup";
license = lib.licenses.mit;
mainProgram = "dnslookup";
maintainers = [ lib.maintainers.philiptaron ];
};
}