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