Merge pull request #320809 from fabaff/hednsextractor
hednsextractor: init at 1.0.7
This commit is contained in:
commit
0890329602
33
pkgs/by-name/he/hednsextractor/package.nix
Normal file
33
pkgs/by-name/he/hednsextractor/package.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{
|
||||
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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user