Unverified Commit 8cb3d442 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

proxify: add changelog to meta

parent 22dafb7f
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
{ buildGoModule
{ lib
, buildGoModule
, fetchFromGitHub
, lib
}:

buildGoModule rec {
@@ -10,11 +10,11 @@ buildGoModule rec {
  src = fetchFromGitHub {
    owner = "projectdiscovery";
    repo = "proxify";
    rev = "v${version}";
    sha256 = "sha256-InHo5nfgCLDxciwjaB9tamV6MGEM3DlRGU00Ng2SfVY=";
    rev = "refs/tags/v${version}";
    hash = "sha256-InHo5nfgCLDxciwjaB9tamV6MGEM3DlRGU00Ng2SfVY=";
  };

  vendorSha256 = "sha256-GPkxUU9HXLWnj+qjee/CuSE683l2V22cH9KBP2ssaXc=";
  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 ];
  };