Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
34 lines
1.0 KiB
Nix
34 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "proxify";
|
|
version = "0.0.16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "projectdiscovery";
|
|
repo = "proxify";
|
|
tag = "v${version}";
|
|
hash = "sha256-CctbeKMf4+E+Fh/0hWLwHdTTsAavkiJ2ziMumY/+oF8=";
|
|
};
|
|
|
|
vendorHash = "sha256-7bOnLv2IJ9tysvZm33wBeMHvdSBDg1ii/QXv2n1wqxw=";
|
|
|
|
meta = {
|
|
description = "Proxy tool for HTTP/HTTPS traffic capture";
|
|
longDescription = ''
|
|
This tool supports multiple operations such as request/response dump, filtering
|
|
and manipulation via DSL language, upstream HTTP/Socks5 proxy. Additionally a
|
|
replay utility allows to import the dumped traffic (request/responses with correct
|
|
domain name) into other tools by simply setting the upstream proxy to proxify.
|
|
'';
|
|
homepage = "https://github.com/projectdiscovery/proxify";
|
|
changelog = "https://github.com/projectdiscovery/proxify/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|