mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
72 lines
1.8 KiB
Nix
72 lines
1.8 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, installShellFiles
|
|
, makeWrapper
|
|
, libpcap
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "masscan";
|
|
version = "1.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "robertdavidgraham";
|
|
repo = "masscan";
|
|
rev = version;
|
|
sha256 = "sha256-mnGC/moQANloR5ODwRjzJzBa55OEZ9QU+9WpAHxQE/g=";
|
|
};
|
|
|
|
patches = [
|
|
# Patches the missing "--resume" functionality
|
|
(fetchpatch {
|
|
name = "resume.patch";
|
|
url = "https://github.com/robertdavidgraham/masscan/commit/90791550bbdfac8905917a109ed74024161f14b3.patch";
|
|
sha256 = "sha256-A7Fk3MBNxaad69MrUYg7fdMG77wba5iESDTIRigYslw=";
|
|
})
|
|
];
|
|
|
|
postPatch = lib.optionalString stdenv.isDarwin ''
|
|
# Fix broken install command
|
|
substituteInPlace Makefile --replace "-pm755" "-pDm755"
|
|
'';
|
|
|
|
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"GITVER=${version}"
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postInstall = ''
|
|
installManPage doc/masscan.?
|
|
|
|
install -Dm444 -t $out/etc/masscan data/exclude.conf
|
|
install -Dm444 -t $out/share/doc/masscan doc/*.{html,js,md}
|
|
install -Dm444 -t $out/share/licenses/masscan LICENSE
|
|
|
|
wrapProgram $out/bin/masscan \
|
|
--prefix LD_LIBRARY_PATH : "${libpcap}/lib"
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
$out/bin/masscan --selftest
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Fast scan of the Internet";
|
|
mainProgram = "masscan";
|
|
homepage = "https://github.com/robertdavidgraham/masscan";
|
|
changelog = "https://github.com/robertdavidgraham/masscan/releases/tag/${version}";
|
|
license = licenses.agpl3Only;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
};
|
|
}
|