1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "alterx";
8 version = "0.0.1";
9
10 src = fetchFromGitHub {
11 owner = "projectdiscovery";
12 repo = "alterx";
13 rev = "refs/tags/v${version}";
14 hash = "sha256-F60nEkHmmhlRuHI2Hc3no2RvILhVN2oPXgwxpTdPDYM=";
15 };
16
17 vendorHash = "sha256-tIXSkNJbbT6X23WCUnB+c0FbxJdV3RF1iOrEJxETeaE=";
18
19 meta = with lib; {
20 description = "Fast and customizable subdomain wordlist generator using DSL";
21 homepage = "https://github.com/projectdiscovery/alterx";
22 changelog = "https://github.com/projectdiscovery/alterx/releases/tag/v${version}";
23 license = licenses.mit;
24 maintainers = with maintainers; [ fab ];
25 };
26}