nixpkgs/pkgs/by-name/al/alterx/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
722 B
Nix
Raw Normal View History

2023-04-04 12:24:59 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "alterx";
version = "0.0.3";
2023-04-04 12:24:59 +00:00
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "alterx";
rev = "refs/tags/v${version}";
hash = "sha256-A01XROFB2NkArfFtRMv/r9Nu5QoKMTOVzVIUnFoVe78=";
2023-04-04 12:24:59 +00:00
};
vendorHash = "sha256-efwU41kFR8QYa2cevvj4pYAXgCisJ4OHaRIhWVnETvc=";
2023-04-04 12:24:59 +00:00
meta = with lib; {
description = "Fast and customizable subdomain wordlist generator using DSL";
mainProgram = "alterx";
2023-04-04 12:24:59 +00:00
homepage = "https://github.com/projectdiscovery/alterx";
changelog = "https://github.com/projectdiscovery/alterx/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}