biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / alterx / default.nix
bloba81d83d2ae312923011040b5883e20ad4c215f3c
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "alterx";
8   version = "0.0.3";
10   src = fetchFromGitHub {
11     owner = "projectdiscovery";
12     repo = "alterx";
13     rev = "refs/tags/v${version}";
14     hash = "sha256-A01XROFB2NkArfFtRMv/r9Nu5QoKMTOVzVIUnFoVe78=";
15   };
17   vendorHash = "sha256-efwU41kFR8QYa2cevvj4pYAXgCisJ4OHaRIhWVnETvc=";
19   meta = with lib; {
20     description = "Fast and customizable subdomain wordlist generator using DSL";
21     mainProgram = "alterx";
22     homepage = "https://github.com/projectdiscovery/alterx";
23     changelog = "https://github.com/projectdiscovery/alterx/releases/tag/v${version}";
24     license = licenses.mit;
25     maintainers = with maintainers; [ fab ];
26   };