2021-01-16 19:51:22 -08:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, libpcap, pkg-config, openssl, lua5_3
|
2020-01-15 03:39:52 -08:00
|
|
|
, pcre, liblinear, libssh2
|
2014-04-03 12:07:52 -07:00
|
|
|
, graphicalSupport ? false
|
2016-09-22 10:57:34 -07:00
|
|
|
, libX11 ? null
|
2017-01-21 05:25:19 -08:00
|
|
|
, gtk2 ? null
|
2020-01-15 03:39:52 -08:00
|
|
|
, python2 ? null
|
2017-01-21 05:25:19 -08:00
|
|
|
, makeWrapper ? null
|
2019-03-16 08:56:45 -07:00
|
|
|
, withLua ? true
|
2008-05-22 04:39:30 -07:00
|
|
|
}:
|
2013-06-06 00:13:08 -07:00
|
|
|
|
2021-01-15 01:19:50 -08:00
|
|
|
with lib;
|
2016-08-14 04:52:23 -07:00
|
|
|
|
2020-01-15 03:39:52 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2014-04-03 12:07:52 -07:00
|
|
|
name = "nmap${optionalString graphicalSupport "-graphical"}-${version}";
|
2020-11-27 02:04:17 -08:00
|
|
|
version = "7.80";
|
2007-08-04 05:49:53 -07:00
|
|
|
|
2004-08-06 03:00:53 -07:00
|
|
|
src = fetchurl {
|
2016-10-27 04:55:08 -07:00
|
|
|
url = "https://nmap.org/dist/nmap-${version}.tar.bz2";
|
2020-11-27 02:04:17 -08:00
|
|
|
sha256 = "1aizfys6l9f9grm82bk878w56mg0zpkfns3spzj157h98875mypw";
|
2008-05-22 04:39:30 -07:00
|
|
|
};
|
2007-08-04 05:49:53 -07:00
|
|
|
|
2019-05-19 20:24:43 -07:00
|
|
|
patches = [ ./zenmap.patch ]
|
|
|
|
++ optionals stdenv.cc.isClang [(
|
|
|
|
# Fixes a compile error due an ambiguous reference to bind(2) in
|
|
|
|
# nping/EchoServer.cc, which is otherwise resolved to std::bind.
|
|
|
|
# https://github.com/nmap/nmap/pull/1363
|
|
|
|
fetchpatch {
|
|
|
|
url = "https://github.com/nmap/nmap/commit/5bbe66f1bd8cbd3718f5805139e2e8139e6849bb.diff";
|
2019-08-23 21:57:35 -07:00
|
|
|
includes = [ "nping/EchoServer.cc" ];
|
|
|
|
sha256 = "0xcph9mycy57yryjg253frxyz87c4135rrbndlqw1400c8jxq70c";
|
2019-05-19 20:24:43 -07:00
|
|
|
}
|
|
|
|
)];
|
2013-06-06 00:13:08 -07:00
|
|
|
|
2017-09-18 13:01:28 -07:00
|
|
|
prePatch = optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace libz/configure \
|
|
|
|
--replace /usr/bin/libtool ar \
|
|
|
|
--replace 'AR="libtool"' 'AR="ar"' \
|
|
|
|
--replace 'ARFLAGS="-o"' 'ARFLAGS="-r"'
|
|
|
|
'';
|
|
|
|
|
2019-03-16 08:56:45 -07:00
|
|
|
configureFlags = [
|
|
|
|
(if withLua then "--with-liblua=${lua5_3}" else "--without-liblua")
|
2020-01-15 03:39:52 -08:00
|
|
|
] ++ optionals (!graphicalSupport) [ "--without-ndiff" "--without-zenmap" ];
|
2014-12-28 21:18:49 -08:00
|
|
|
|
2018-10-19 01:30:36 -07:00
|
|
|
makeFlags = optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
|
|
|
"AR=${stdenv.cc.bintools.targetPrefix}ar"
|
|
|
|
"RANLIB=${stdenv.cc.bintools.targetPrefix}ranlib"
|
|
|
|
"CC=${stdenv.cc.targetPrefix}gcc"
|
|
|
|
];
|
|
|
|
|
2020-01-15 03:39:52 -08:00
|
|
|
pythonPath = with python2.pkgs; optionals graphicalSupport [
|
|
|
|
pygtk pysqlite pygobject2 pycairo
|
|
|
|
];
|
|
|
|
|
2021-01-16 19:51:22 -08:00
|
|
|
nativeBuildInputs = [ pkg-config ] ++ optionals graphicalSupport [ python2.pkgs.wrapPython ];
|
2020-01-15 03:39:52 -08:00
|
|
|
buildInputs = [ pcre liblinear libssh2 libpcap openssl ] ++ optionals graphicalSupport (with python2.pkgs; [
|
|
|
|
python2 libX11 gtk2
|
|
|
|
]);
|
|
|
|
|
|
|
|
postInstall = optionalString graphicalSupport ''
|
|
|
|
buildPythonPath "$out $pythonPath"
|
|
|
|
patchPythonScript $out/bin/ndiff
|
|
|
|
patchPythonScript $out/bin/zenmap
|
2017-01-21 05:25:19 -08:00
|
|
|
'';
|
|
|
|
|
2020-01-15 03:39:52 -08:00
|
|
|
enableParallelBuilding = true;
|
2014-01-28 09:11:00 -08:00
|
|
|
|
2018-04-24 20:20:18 -07:00
|
|
|
doCheck = false; # fails 3 tests, probably needs the net
|
|
|
|
|
2014-03-16 14:53:08 -07:00
|
|
|
meta = {
|
2014-11-11 05:20:43 -08:00
|
|
|
description = "A free and open source utility for network discovery and security auditing";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.nmap.org";
|
2014-04-03 12:07:52 -07:00
|
|
|
license = licenses.gpl2;
|
2015-03-18 15:51:19 -07:00
|
|
|
platforms = platforms.all;
|
2018-01-16 21:13:23 -08:00
|
|
|
maintainers = with maintainers; [ thoughtpolice fpletz ];
|
2014-01-28 09:11:00 -08:00
|
|
|
};
|
2010-07-22 03:31:39 -07:00
|
|
|
}
|