depot/third_party/nixpkgs/pkgs/by-name/he/hednsextractor/package.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

33 lines
827 B
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "hednsextractor";
version = "1.0.7";
src = fetchFromGitHub {
owner = "HuntDownProject";
repo = "HEDnsExtractor";
rev = "refs/tags/v${version}";
hash = "sha256-Uj5TNQ+X0+ip1DcLanMmFzr5ROuXhuZJSPF9tile+ZQ=";
};
vendorHash = "sha256-8yD/yHSqesyS71YeRBv4ARyXyIbTcan7YjBeKBrg0Vc=";
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "Tool suite for hunting suspicious targets, expose domains and phishing discovery";
homepage = "https://github.com/HuntDownProject/HEDnsExtractor";
changelog = "https://github.com/HuntDownProject/HEDnsExtractor/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
mainProgram = "hednsextractor";
};
}