Merge pull request #222854 from fabaff/proxify-bump

proxify: 0.0.8 -> 0.0.9

authored by Fabian Affolter and committed by GitHub 711a7655 b1fcf5c7

+7 -6
+7 -6
pkgs/tools/networking/proxify/default.nix
··· 1 - { buildGoModule 1 + { lib 2 + , buildGoModule 2 3 , fetchFromGitHub 3 - , lib 4 4 }: 5 5 6 6 buildGoModule rec { 7 7 pname = "proxify"; 8 - version = "0.0.8"; 8 + version = "0.0.9"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "projectdiscovery"; 12 12 repo = "proxify"; 13 - rev = "v${version}"; 14 - sha256 = "sha256-0zXWW6U+x9W+fMsvYTfWRdoftsQCp2JXXkfbqS63Svk="; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-InHo5nfgCLDxciwjaB9tamV6MGEM3DlRGU00Ng2SfVY="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-OldZyaPROtnPZPczFjn+kl61TI5zco/gM2MuPn2gYjo="; 17 + vendorHash = "sha256-GPkxUU9HXLWnj+qjee/CuSE683l2V22cH9KBP2ssaXc="; 18 18 19 19 meta = with lib; { 20 20 description = "Proxy tool for HTTP/HTTPS traffic capture"; ··· 25 25 domain name) into other tools by simply setting the upstream proxy to proxify. 26 26 ''; 27 27 homepage = "https://github.com/projectdiscovery/proxify"; 28 + changelog = "https://github.com/projectdiscovery/proxify/releases/tag/v${version}"; 28 29 license = licenses.mit; 29 30 maintainers = with maintainers; [ fab ]; 30 31 };