amass: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-09 17:17:22 +01:00
parent 0b8752bb65
commit 48d5c09212

View file

@ -1,6 +1,6 @@
{ buildGoModule { lib
, buildGoModule
, fetchFromGitHub , fetchFromGitHub
, lib
}: }:
buildGoModule rec { buildGoModule rec {
@ -11,12 +11,15 @@ buildGoModule rec {
owner = "OWASP"; owner = "OWASP";
repo = "Amass"; repo = "Amass";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-c6PAmCIxQEkLJi0PNS+8oO/q3lWS0ZSXMiOiExWRpgY="; hash = "sha256-c6PAmCIxQEkLJi0PNS+8oO/q3lWS0ZSXMiOiExWRpgY=";
}; };
vendorSha256 = "sha256-hoX/i3RIMhs2ssm1qELHKceS3Vzo6cj/eMuAROyz/mQ="; vendorHash = "sha256-hoX/i3RIMhs2ssm1qELHKceS3Vzo6cj/eMuAROyz/mQ=";
outputs = [ "out" "wordlists" ]; outputs = [
"out"
"wordlists"
];
postInstall = '' postInstall = ''
mkdir -p $wordlists mkdir -p $wordlists
@ -41,6 +44,7 @@ buildGoModule rec {
that are found under the wordlists output. that are found under the wordlists output.
''; '';
homepage = "https://owasp.org/www-project-amass/"; homepage = "https://owasp.org/www-project-amass/";
changelog = "https://github.com/OWASP/Amass/releases/tag/v${version}";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ kalbasit fab ]; maintainers = with maintainers; [ kalbasit fab ];
}; };