Merge pull request #222854 from fabaff/proxify-bump

proxify: 0.0.8 -> 0.0.9
This commit is contained in:
Fabian Affolter 2023-03-24 17:02:21 +01:00 committed by GitHub
commit 711a7655d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,20 +1,20 @@
{ buildGoModule
{ lib
, buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "proxify";
version = "0.0.8";
version = "0.0.9";
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "proxify";
rev = "v${version}";
sha256 = "sha256-0zXWW6U+x9W+fMsvYTfWRdoftsQCp2JXXkfbqS63Svk=";
rev = "refs/tags/v${version}";
hash = "sha256-InHo5nfgCLDxciwjaB9tamV6MGEM3DlRGU00Ng2SfVY=";
};
vendorSha256 = "sha256-OldZyaPROtnPZPczFjn+kl61TI5zco/gM2MuPn2gYjo=";
vendorHash = "sha256-GPkxUU9HXLWnj+qjee/CuSE683l2V22cH9KBP2ssaXc=";
meta = with lib; {
description = "Proxy tool for HTTP/HTTPS traffic capture";
@ -25,6 +25,7 @@ buildGoModule rec {
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 = licenses.mit;
maintainers = with maintainers; [ fab ];
};