Merge pull request #224645 from fabaff/alterx

alterx: init at 0.0.1
This commit is contained in:
Fabian Affolter 2023-04-11 09:17:56 +02:00 committed by GitHub
commit c02d4c8604
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "alterx";
version = "0.0.1";
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "alterx";
rev = "refs/tags/v${version}";
hash = "sha256-F60nEkHmmhlRuHI2Hc3no2RvILhVN2oPXgwxpTdPDYM=";
};
vendorHash = "sha256-tIXSkNJbbT6X23WCUnB+c0FbxJdV3RF1iOrEJxETeaE=";
meta = with lib; {
description = "Fast and customizable subdomain wordlist generator using DSL";
homepage = "https://github.com/projectdiscovery/alterx";
changelog = "https://github.com/projectdiscovery/alterx/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -260,6 +260,8 @@ with pkgs;
aeskeyfind = callPackage ../tools/security/aeskeyfind { };
alterx = callPackage ../tools/security/alterx { };
asn = callPackage ../applications/networking/asn { };
asnmap = callPackage ../tools/security/asnmap { };