3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #205322 from fabaff/amass-bump

amass: 3.20.0 -> 3.21.1
This commit is contained in:
Fabian Affolter 2022-12-09 20:52:00 +01:00 committed by GitHub
commit 92a258bee0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,22 +1,25 @@
{ buildGoModule
{ lib
, buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "amass";
version = "3.20.0";
version = "3.21.1";
src = fetchFromGitHub {
owner = "OWASP";
repo = "Amass";
rev = "v${version}";
sha256 = "sha256-c6PAmCIxQEkLJi0PNS+8oO/q3lWS0ZSXMiOiExWRpgY=";
hash = "sha256-QHFMHAKAwPdVhCTLUFtRcX252kyHfLQNPOTJ1WwSLgU=";
};
vendorSha256 = "sha256-hoX/i3RIMhs2ssm1qELHKceS3Vzo6cj/eMuAROyz/mQ=";
vendorHash = "sha256-ytTHJoWjCiIoUJtUYUguphWVXr6gp43pY/L2ik2Bb+A=";
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 ];
};