4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, rustPlatform, nmap, Security }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rustscan";
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RustScan";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0fdbsz1v7bb5dm3zqjs1qf73lb1m4qzkqyb3h3hbyrp9vklgxsgw";
|
|
};
|
|
|
|
cargoSha256 = "039xarscwqndpyrr3sgzkhqna3c908zh06id8x2qaykm8l248zs9";
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/main.rs \
|
|
--replace 'Command::new("nmap")' 'Command::new("${nmap}/bin/nmap")'
|
|
'';
|
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
checkFlags = [
|
|
"--skip=infer_ulimit_lowering_no_panic"
|
|
"--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 lib; {
|
|
description = "Faster Nmap Scanning with Rust";
|
|
homepage = "https://github.com/RustScan/RustScan";
|
|
license = licenses.gpl3Only;
|
|
maintainers = [ maintainers.SuperSandro2000 ];
|
|
};
|
|
}
|