Merge pull request #205322 from fabaff/amass-bump

amass: 3.20.0 -> 3.21.1

authored by

Fabian Affolter and committed by
GitHub
92a258be 9cf1be96

+10 -6
+10 -6
pkgs/tools/networking/amass/default.nix
··· 1 - { buildGoModule 1 + { lib 2 + , buildGoModule 2 3 , fetchFromGitHub 3 - , lib 4 4 }: 5 5 6 6 buildGoModule rec { 7 7 pname = "amass"; 8 - version = "3.20.0"; 8 + version = "3.21.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "OWASP"; 12 12 repo = "Amass"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-c6PAmCIxQEkLJi0PNS+8oO/q3lWS0ZSXMiOiExWRpgY="; 14 + hash = "sha256-QHFMHAKAwPdVhCTLUFtRcX252kyHfLQNPOTJ1WwSLgU="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-hoX/i3RIMhs2ssm1qELHKceS3Vzo6cj/eMuAROyz/mQ="; 17 + vendorHash = "sha256-ytTHJoWjCiIoUJtUYUguphWVXr6gp43pY/L2ik2Bb+A="; 18 18 19 - outputs = [ "out" "wordlists" ]; 19 + outputs = [ 20 + "out" 21 + "wordlists" 22 + ]; 20 23 21 24 postInstall = '' 22 25 mkdir -p $wordlists ··· 41 44 that are found under the wordlists output. 42 45 ''; 43 46 homepage = "https://owasp.org/www-project-amass/"; 47 + changelog = "https://github.com/OWASP/Amass/releases/tag/v${version}"; 44 48 license = licenses.asl20; 45 49 maintainers = with maintainers; [ kalbasit fab ]; 46 50 };