summary refs log tree commit diff
path: root/pkgs/tools/security/dalfox
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-03-29 10:00:44 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2023-03-29 10:01:22 +0200
commit7dc21afa839a63a3c91dc5e8faa1bc5193289219 (patch)
tree774083535d5fb401b006bfe0b8324030b87796bb /pkgs/tools/security/dalfox
parent0f2c778f2293bb0db777997c6f818ac7e49f4273 (diff)
downloadnixpkgs-7dc21afa839a63a3c91dc5e8faa1bc5193289219.tar
nixpkgs-7dc21afa839a63a3c91dc5e8faa1bc5193289219.tar.gz
nixpkgs-7dc21afa839a63a3c91dc5e8faa1bc5193289219.tar.bz2
nixpkgs-7dc21afa839a63a3c91dc5e8faa1bc5193289219.tar.lz
nixpkgs-7dc21afa839a63a3c91dc5e8faa1bc5193289219.tar.xz
nixpkgs-7dc21afa839a63a3c91dc5e8faa1bc5193289219.tar.zst
nixpkgs-7dc21afa839a63a3c91dc5e8faa1bc5193289219.zip
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
Diffstat (limited to 'pkgs/tools/security/dalfox')
-rw-r--r--pkgs/tools/security/dalfox/default.nix12
1 files 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 ];
   };