summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2020-09-29 21:15:33 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2020-10-10 19:40:56 +0200
commit422a52c2aa7f7e07d3048992621fee65280bd6f3 (patch)
treea0a1c1d1b939d62eb9f8df628d3e997f7ef45681
parent928b1bbbfcb4ae1e405daf1137f3248fa9c07be5 (diff)
downloadnixpkgs-422a52c2aa7f7e07d3048992621fee65280bd6f3.tar
nixpkgs-422a52c2aa7f7e07d3048992621fee65280bd6f3.tar.gz
nixpkgs-422a52c2aa7f7e07d3048992621fee65280bd6f3.tar.bz2
nixpkgs-422a52c2aa7f7e07d3048992621fee65280bd6f3.tar.lz
nixpkgs-422a52c2aa7f7e07d3048992621fee65280bd6f3.tar.xz
nixpkgs-422a52c2aa7f7e07d3048992621fee65280bd6f3.tar.zst
nixpkgs-422a52c2aa7f7e07d3048992621fee65280bd6f3.zip
rustscan: 1.10.0 -> 1.10.1
-rw-r--r--pkgs/tools/security/rustscan/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/security/rustscan/default.nix b/pkgs/tools/security/rustscan/default.nix
index 006a6645c3a..773711d1f30 100644
--- a/pkgs/tools/security/rustscan/default.nix
+++ b/pkgs/tools/security/rustscan/default.nix
@@ -6,16 +6,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "rustscan";
-  version = "1.10.0";
+  version = "1.10.1";
 
   src = fetchFromGitHub {
     owner = "RustScan";
     repo = pname;
     rev = "${version}";
-    sha256 = "1x6vi3d250jhy75ybp8gm6cq9ncv0jig5c1v12r26raflhkh7fk3";
+    sha256 = "0dhy7b73ipsxsr7wlc3r5yy39i3cjrdszhsw9xwjj31692s3b605";
   };
 
-  cargoSha256 = "0q4p4pa1lh8kw5gmiim0zmmvs3l1kl319a3ji7gmj2fisha4319k";
+  cargoSha256 = "00s1iv8yw06647ijw9p3l5n7d899gsks5j8ljag6ha7hgl5vs4ci";
 
   postPatch = ''
     substituteInPlace src/main.rs \
@@ -26,6 +26,7 @@ rustPlatform.buildRustPackage rec {
     "--skip=infer_ulimit_lowering_no_panic"
     "--skip=google_dns_runs"
     "--skip=parse_correct_host_addresses"
+    "--skip=parse_hosts_file_and_incorrect_hosts"
   ];
 
   meta = with lib; {