forked from mirrors/nixpkgs
amass: add changelog to meta
This commit is contained in:
parent
0b8752bb65
commit
48d5c09212
|
@ -1,6 +1,6 @@
|
|||
{ buildGoModule
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
|
@ -11,12 +11,15 @@ buildGoModule rec {
|
|||
owner = "OWASP";
|
||||
repo = "Amass";
|
||||
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 = ''
|
||||
mkdir -p $wordlists
|
||||
|
@ -41,6 +44,7 @@ buildGoModule rec {
|
|||
that are found under the wordlists output.
|
||||
'';
|
||||
homepage = "https://owasp.org/www-project-amass/";
|
||||
changelog = "https://github.com/OWASP/Amass/releases/tag/v${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ kalbasit fab ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue