Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 43082f7f1940
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f95afaf4378a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 24, 2020

  1. rustscan: 1.10.1 -> 2.0.1

    06kellyjac committed Nov 24, 2020
    Copy the full SHA
    6993bd0 View commit details
  2. Merge pull request #104786 from 06kellyjac/rustscan

    rustscan: 1.10.1 -> 2.0.1
    SuperSandro2000 authored Nov 24, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f95afaf View commit details
Showing with 5 additions and 3 deletions.
  1. +5 −3 pkgs/tools/security/rustscan/default.nix
8 changes: 5 additions & 3 deletions pkgs/tools/security/rustscan/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "rustscan";
version = "1.10.1";
version = "2.0.1";

src = fetchFromGitHub {
owner = "RustScan";
repo = pname;
rev = version;
sha256 = "0dhy7b73ipsxsr7wlc3r5yy39i3cjrdszhsw9xwjj31692s3b605";
sha256 = "0fdbsz1v7bb5dm3zqjs1qf73lb1m4qzkqyb3h3hbyrp9vklgxsgw";
};

cargoSha256 = "00s1iv8yw06647ijw9p3l5n7d899gsks5j8ljag6ha7hgl5vs4ci";
cargoSha256 = "039xarscwqndpyrr3sgzkhqna3c908zh06id8x2qaykm8l248zs9";

postPatch = ''
substituteInPlace src/main.rs \
@@ -25,6 +25,8 @@ rustPlatform.buildRustPackage rec {
"--skip=google_dns_runs"
"--skip=parse_correct_host_addresses"
"--skip=parse_hosts_file_and_incorrect_hosts"
"--skip=run_perl_script"
"--skip=run_python_script"
];

meta = with stdenv.lib; {