mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
nmap,
|
|
perl,
|
|
python3,
|
|
rustPlatform,
|
|
Security,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rustscan";
|
|
version = "2.2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RustScan";
|
|
repo = "RustScan";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-GOoyq2GgVGNUxxy0KQeRvkISb3FJqwWK5XpmoBAw/tk=";
|
|
};
|
|
|
|
cargoHash = "sha256-K9NFm++jBsrn7U+rZkTOWhrUuL4CA0NR7SlSyhSIwSc=";
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/scripts/mod.rs \
|
|
--replace-fail 'call_format = "nmap' 'call_format = "${nmap}/bin/nmap'
|
|
patchShebangs fixtures/.rustscan_scripts/*
|
|
'';
|
|
|
|
buildInputs = lib.optional stdenv.isDarwin Security;
|
|
|
|
nativeCheckInputs = [
|
|
perl
|
|
python3
|
|
];
|
|
|
|
checkFlags = [
|
|
# These tests require network access
|
|
"--skip=parse_correct_host_addresses"
|
|
"--skip=parse_hosts_file_and_incorrect_hosts"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Faster Nmap Scanning with Rust";
|
|
homepage = "https://github.com/RustScan/RustScan";
|
|
changelog = "https://github.com/RustScan/RustScan/releases/tag/${version}";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "rustscan";
|
|
};
|
|
}
|