Merge pull request #119797 from fabaff/bump-ffuf

ffuf: 1.2.1 -> 1.3.0
This commit is contained in:
Sandro 2021-04-18 19:13:11 +02:00 committed by GitHub
commit 59f719def4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,25 +1,21 @@
{ buildGoModule
{ lib
, buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "ffuf";
version = "1.2.1";
version = "1.3.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "sha256-XSdFLfSYDdKI7BYo9emYanvZeSFGxiNLYxuw5QKAyRc=";
sha256 = "sha256-0ckpEiXxen2E9IzrsmKoEKagoJ5maAbH1tHKgQjoCjo=";
};
vendorSha256 = "sha256-szT08rIozAuliOmge5RFX4NeVrJ2pCVyfotrHuvc0UU=";
# tests don't pass due to an issue with the memory addresses
# https://github.com/ffuf/ffuf/issues/367
doCheck = false;
meta = with lib; {
description = "Fast web fuzzer written in Go";
longDescription = ''