proxify: add changelog to meta
This commit is contained in:
parent
22dafb7f2a
commit
8cb3d44216
1 changed files with 6 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
{ buildGoModule
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, lib
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
|
@ -10,11 +10,11 @@ buildGoModule rec {
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "projectdiscovery";
|
owner = "projectdiscovery";
|
||||||
repo = "proxify";
|
repo = "proxify";
|
||||||
rev = "v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
sha256 = "sha256-InHo5nfgCLDxciwjaB9tamV6MGEM3DlRGU00Ng2SfVY=";
|
hash = "sha256-InHo5nfgCLDxciwjaB9tamV6MGEM3DlRGU00Ng2SfVY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-GPkxUU9HXLWnj+qjee/CuSE683l2V22cH9KBP2ssaXc=";
|
vendorHash = "sha256-GPkxUU9HXLWnj+qjee/CuSE683l2V22cH9KBP2ssaXc=";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Proxy tool for HTTP/HTTPS traffic capture";
|
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.
|
domain name) into other tools by simply setting the upstream proxy to proxify.
|
||||||
'';
|
'';
|
||||||
homepage = "https://github.com/projectdiscovery/proxify";
|
homepage = "https://github.com/projectdiscovery/proxify";
|
||||||
|
changelog = "https://github.com/projectdiscovery/proxify/releases/tag/v${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ fab ];
|
maintainers = with maintainers; [ fab ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue