amass: 3.0.25 -> 3.4.2 (#78001)

This commit is contained in:
zowoq 2020-01-23 06:13:51 +10:00 committed by Wael Nasreddine
parent 79bf9ef3b5
commit 88235d99a4

View File

@ -5,22 +5,22 @@
buildGoModule rec {
pname = "amass";
version = "3.0.25";
version = "3.4.2";
src = fetchFromGitHub {
owner = "OWASP";
repo = "Amass";
rev = "v${version}";
sha256 = "04vsahqmbs9rysdwyjq0zgwcn6dgdvkyz8lsp1g1p9d3amrgbqjy";
sha256 = "0mia01cqmaa17696m73qazpbyrcng7wldca79g46xgc4z96q1i7i";
};
modSha256 = "0kwi4pys08kszrh5kz64gs68k20y00v2zqh5hyrgpy9nivqrlj62";
modSha256 = "1zwm7skdhql6isffyhixqsgvcgxw2436iv8bj92cxs70ipk537v9";
outputs = [ "out" "wordlists" ];
postInstall = ''
mkdir -p $wordlists
cp -R $src/wordlists/*.txt $wordlists
cp -R $src/examples/wordlists/*.txt $wordlists
gzip $wordlists/*.txt
'';