about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-10-15 14:16:06 +0200
committerGitHub <noreply@github.com>2022-10-15 14:16:06 +0200
commit4d561fcc92ecb4ed9ca70e4c66f418cdd52d930e (patch)
tree3384564f884ac483cc42063d3b588f76a6c870ea /pkgs
parenta885b62d4109932e8498c4bccbcdb25b1815a943 (diff)
parent46bad55d5c0bee171d25e07bd638423b03378bb2 (diff)
Merge pull request #196089 from fabaff/gobuster-bump
gobuster: 3.1.0 -> 3.2.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/gobuster/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/security/gobuster/default.nix b/pkgs/tools/security/gobuster/default.nix
index e11e76cc971b0..2dda2d59da803 100644
--- a/pkgs/tools/security/gobuster/default.nix
+++ b/pkgs/tools/security/gobuster/default.nix
@@ -1,20 +1,20 @@
-{ buildGoModule
+{ lib
+, buildGoModule
 , fetchFromGitHub
-, lib
 }:
 
 buildGoModule rec {
   pname = "gobuster";
-  version = "3.1.0";
+  version = "3.2.0";
 
   src = fetchFromGitHub {
     owner = "OJ";
     repo = "gobuster";
     rev = "v${version}";
-    sha256 = "0nal2g5c6z46x6337yh0s6mqgnsigp91i7mp1l3sa91p5ihk71wr";
+    hash = "sha256-rTduDHGo5V40OlBnwncSzCNYGsHg0uXnuI8JSwOqCSY=";
   };
 
-  vendorSha256 = "1isp2jd6k4ppns5zi9irj09090imnc0xp6vcps135ymgp8qg4163";
+  vendorHash = "sha256-OYQTVu3L2VxOMIYKMHmjiPCKU15RopLz0KL5+7Zb9WY=";
 
   meta = with lib; {
     description = "Tool used to brute-force URIs, DNS subdomains, Virtual Host names on target web servers";