python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / proxify / default.nix
blobb5697da280f13cdcad7d2726ded036bcfad79761
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
4 }:
6 buildGoModule rec {
7   pname = "proxify";
8   version = "0.0.8";
10   src = fetchFromGitHub {
11     owner = "projectdiscovery";
12     repo = "proxify";
13     rev = "v${version}";
14     sha256 = "sha256-0zXWW6U+x9W+fMsvYTfWRdoftsQCp2JXXkfbqS63Svk=";
15   };
17   vendorSha256 = "sha256-OldZyaPROtnPZPczFjn+kl61TI5zco/gM2MuPn2gYjo=";
19   meta = with lib; {
20     description = "Proxy tool for HTTP/HTTPS traffic capture";
21     longDescription = ''
22       This tool supports multiple operations such as request/response dump, filtering
23       and manipulation via DSL language, upstream HTTP/Socks5 proxy. Additionally a
24       replay utility allows to import the dumped traffic (request/responses with correct
25       domain name) into other tools by simply setting the upstream proxy to proxify.
26     '';
27     homepage = "https://github.com/projectdiscovery/proxify";
28     license = licenses.mit;
29     maintainers = with maintainers; [ fab ];
30   };