summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-07-17 12:01:55 +0000
committerGitHub <noreply@github.com>2021-07-17 12:01:55 +0000
commit732bd85cf5ce831a88eb7871fd186c386a6493b0 (patch)
treef2f0e28400338209efd16ff0459e5769e566b052 /pkgs/tools/networking
parent29bbe7c6169adf86e8e51f14ef6c133480f608df (diff)
parent4ee4d805d29afac902a3c631ab13ad08fbe1e84d (diff)
downloadnixpkgs-732bd85cf5ce831a88eb7871fd186c386a6493b0.tar
nixpkgs-732bd85cf5ce831a88eb7871fd186c386a6493b0.tar.gz
nixpkgs-732bd85cf5ce831a88eb7871fd186c386a6493b0.tar.bz2
nixpkgs-732bd85cf5ce831a88eb7871fd186c386a6493b0.tar.lz
nixpkgs-732bd85cf5ce831a88eb7871fd186c386a6493b0.tar.xz
nixpkgs-732bd85cf5ce831a88eb7871fd186c386a6493b0.tar.zst
nixpkgs-732bd85cf5ce831a88eb7871fd186c386a6493b0.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/amass/default.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/pkgs/tools/networking/amass/default.nix b/pkgs/tools/networking/amass/default.nix
index bf8a1b8e4f8..184ba0862c5 100644
--- a/pkgs/tools/networking/amass/default.nix
+++ b/pkgs/tools/networking/amass/default.nix
@@ -5,16 +5,16 @@
 
 buildGoModule rec {
   pname = "amass";
-  version = "3.13.2";
+  version = "3.13.3";
 
   src = fetchFromGitHub {
     owner = "OWASP";
     repo = "Amass";
     rev = "v${version}";
-    sha256 = "sha256-3J4yT7GTuVzkxMb+fCD3S9u0XBHa4Y0W+BnkDJ4PhWI=";
+    sha256 = "sha256-uIqnylq99P9M8nOuqkKl7fGIVfYO6cO0DAQ4eaC2qyY=";
   };
 
-  vendorSha256 = "0nbj41ha31lkwraxwvyavdr94y9nnxl6z85jjkszxbd12a5g6v7h";
+  vendorSha256 = "sha256-LOnnvidUdDDhNPWM+o0Ef4NqRboi89s0DzDwuxi0nl8=";
 
   outputs = [ "out" "wordlists" ];
 
@@ -24,6 +24,9 @@ buildGoModule rec {
     gzip $wordlists/*.txt
   '';
 
+  # https://github.com/OWASP/Amass/issues/640
+  doCheck = false;
+
   meta = with lib; {
     description = "In-Depth DNS Enumeration and Network Mapping";
     longDescription = ''
@@ -37,8 +40,8 @@ buildGoModule rec {
       Amass ships with a set of wordlist (to be used with the amass -w flag)
       that are found under the wordlists output.
       '';
-    homepage = "https://www.owasp.org/index.php/OWASP_Amass_Project";
+    homepage = "https://owasp.org/www-project-amass/";
     license = licenses.asl20;
-    maintainers = with maintainers; [ kalbasit ];
+    maintainers = with maintainers; [ kalbasit fab ];
   };
 }