4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
32 lines
972 B
Nix
32 lines
972 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib, stdenv
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "proxify";
|
|
version = "0.0.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "projectdiscovery";
|
|
repo = "proxify";
|
|
rev = "v${version}";
|
|
sha256 = "15j2q9zrs8bdf72jgldkai3xbi4irk69wyjzv48r74rdgf2k49gn";
|
|
};
|
|
|
|
vendorSha256 = "1x78n88ri8kph827k03x1q06zpbbbp7793xsvc376ljda5n6bqig";
|
|
|
|
meta = with lib; {
|
|
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";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|