nixpkgs/pkgs/tools/networking/proxify/default.nix

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

33 lines
1.0 KiB
Nix
Raw Normal View History

2023-03-24 07:29:23 +00:00
{ lib
, buildGoModule
2020-12-27 13:00:18 +00:00
, fetchFromGitHub
}:
buildGoModule rec {
pname = "proxify";
version = "0.0.12";
2020-12-27 13:00:18 +00:00
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "proxify";
2023-03-24 07:29:23 +00:00
rev = "refs/tags/v${version}";
hash = "sha256-j2FuyoTCc9mcoI683xZkMCL6QXy0dGEheNaormlgUvY=";
2020-12-27 13:00:18 +00:00
};
vendorHash = "sha256-kPj3KBi8Mbsj4BW7Vf1w4mW8EN07FuqgFhAkkLCl8Bc=";
2020-12-27 13:00:18 +00:00
meta = with lib; {
2020-12-27 13:00:18 +00:00
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";
2023-03-24 07:29:23 +00:00
changelog = "https://github.com/projectdiscovery/proxify/releases/tag/v${version}";
2020-12-27 13:00:18 +00:00
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}