diff options
author | Fabian Affolter | 2023-03-29 12:09:49 +0200 |
---|---|---|
committer | GitHub | 2023-03-29 12:09:49 +0200 |
commit | cffe9414d6484b341c667500678bf19af4a6e879 (patch) | |
tree | babaf49ab4014286df65420b122f498cb78762d1 /pkgs/tools/security/dalfox/default.nix | |
parent | 6e696ace1a938dce776f92ce17e3b467ef217d90 (diff) | |
parent | 7dc21afa839a63a3c91dc5e8faa1bc5193289219 (diff) |
Merge pull request #223711 from fabaff/dalfox-bump
dalfox: 2.8.2 -> 2.9.0
Diffstat (limited to 'pkgs/tools/security/dalfox/default.nix')
-rw-r--r-- | pkgs/tools/security/dalfox/default.nix | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/tools/security/dalfox/default.nix b/pkgs/tools/security/dalfox/default.nix index ed0d3be6f777..c5f764120bb9 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 ]; }; |