about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNick Cao2024-08-30 15:32:14 -0400
committerGitHub2024-08-30 15:32:14 -0400
commit8aff1b1851000b2c68860c7db050c452d1221247 (patch)
tree46d4f8334283a69e09df867bcf2b06f458c980b3 /pkgs
parent563f5a636dd53696867bd8c768a3f136c6816cef (diff)
parent9b9892d7221952eaf4605322f01984d0e9e82981 (diff)
rustscan: 2.2.3 -> 2.3.0 (#338381)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/rustscan/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/security/rustscan/default.nix b/pkgs/tools/security/rustscan/default.nix
index 588a05ec7eb0..fc3ab5b2e013 100644
--- a/pkgs/tools/security/rustscan/default.nix
+++ b/pkgs/tools/security/rustscan/default.nix
@@ -11,16 +11,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "rustscan";
-  version = "2.2.3";
+  version = "2.3.0";
 
   src = fetchFromGitHub {
     owner = "RustScan";
     repo = "RustScan";
     rev = "refs/tags/${version}";
-    hash = "sha256-GOoyq2GgVGNUxxy0KQeRvkISb3FJqwWK5XpmoBAw/tk=";
+    hash = "sha256-6heC/bHo4IqKNvPjch7AiyWTCZDCv4MZHC7DTEX3U5c=";
   };
 
-  cargoHash = "sha256-K9NFm++jBsrn7U+rZkTOWhrUuL4CA0NR7SlSyhSIwSc=";
+  cargoHash = "sha256-Fr+m4BeYvUOoSkewwdUgpmdNchweeLK7v/tKLEzFOBs=";
 
   postPatch = ''
     substituteInPlace src/scripts/mod.rs \
@@ -39,6 +39,8 @@ rustPlatform.buildRustPackage rec {
     # These tests require network access
     "--skip=parse_correct_host_addresses"
     "--skip=parse_hosts_file_and_incorrect_hosts"
+    "--skip=resolver_args_google_dns"
+    "--skip=resolver_default_cloudflare"
   ];
 
   meta = with lib; {