Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 28 lines 715 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "alterx"; 9 version = "0.0.6"; 10 11 src = fetchFromGitHub { 12 owner = "projectdiscovery"; 13 repo = "alterx"; 14 tag = "v${version}"; 15 hash = "sha256-IjCK0TVZOBegNdfpqOFoOTuj8KtmCuIqNPvcIa1vSo0="; 16 }; 17 18 vendorHash = "sha256-aTA5KGeYmJnbVRbEhT9LigQoJFLD17q9spzBV4BGhNw="; 19 20 meta = { 21 description = "Fast and customizable subdomain wordlist generator using DSL"; 22 mainProgram = "alterx"; 23 homepage = "https://github.com/projectdiscovery/alterx"; 24 changelog = "https://github.com/projectdiscovery/alterx/releases/tag/v${version}"; 25 license = lib.licenses.mit; 26 maintainers = with lib.maintainers; [ fab ]; 27 }; 28}