From 7dc21afa839a63a3c91dc5e8faa1bc5193289219 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 29 Mar 2023 10:00:44 +0200 Subject: [PATCH] dalfox: 2.8.2 -> 2.9.0 Diff: https://github.com/hahwul/dalfox/compare/refs/tags/v2.8.2...v2.9.0 Changelog: https://github.com/hahwul/dalfox/releases/tag/v2.9.0 --- pkgs/tools/security/dalfox/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/security/dalfox/default.nix b/pkgs/tools/security/dalfox/default.nix index ed0d3be6f77..c5f764120bb 100644 --- a/pkgs/tools/security/dalfox/default.nix +++ b/pkgs/tools/security/dalfox/default.nix @@ -5,20 +5,24 @@ buildGoModule rec { pname = "dalfox"; - version = "2.8.2"; + version = "2.9.0"; src = fetchFromGitHub { owner = "hahwul"; repo = pname; - rev = "v${version}"; - sha256 = "sha256-+RCjudjbvc793sE2GCV/l23JD7ZqjNWhi7ZjUaCvTzw="; + rev = "refs/tags/v${version}"; + sha256 = "sha256-AG5CNqkxPQJQ+HN3JGUIgSYxgFigmUqVGn1yAHmo7Mo="; }; - vendorSha256 = "sha256-pLhTwbcMIqm7nrzypMs6yVrqtdCAoPrabTXsUtJ6Zls="; + vendorSha256 = "sha256-OLT85GOcTnWmU+ZRem2+vY29nzvzXhnmIN2W+U6phPk="; + + # Tests require network access + doCheck = false; meta = with lib; { description = "Tool for analysing parameter and XSS scanning"; homepage = "https://github.com/hahwul/dalfox"; + changelog = "https://github.com/hahwul/dalfox/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; };