nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildGoModule,
4 fetchFromGitHub,
5}:
6
7buildGoModule rec {
8 pname = "alterx";
9 version = "0.1.0";
10
11 src = fetchFromGitHub {
12 owner = "projectdiscovery";
13 repo = "alterx";
14 tag = "v${version}";
15 hash = "sha256-aqCsPv+vxO45SwUXwicjQdGNq+Ad4awiF/wwGlPETDU=";
16 };
17
18 vendorHash = "sha256-13ODJNo6xbQkubaGJT3svFbOLbdsHluTCp1Gom+jYeU=";
19
20 meta = {
21 description = "Fast and customizable subdomain wordlist generator using DSL";
22 homepage = "https://github.com/projectdiscovery/alterx";
23 changelog = "https://github.com/projectdiscovery/alterx/releases/tag/${src.tag}";
24 license = lib.licenses.mit;
25 maintainers = with lib.maintainers; [ fab ];
26 mainProgram = "alterx";
27 };
28}