2019-05-20 05:24:43 +02:00
|
|
|
{ stdenv, fetchurl, fetchpatch, libpcap, pkgconfig, openssl, lua5_3
|
2020-01-15 12:39:52 +01:00
|
|
|
, pcre, liblinear, libssh2
|
2014-04-03 21:07:52 +02:00
|
|
|
, graphicalSupport ? false
|
2016-09-22 19:57:34 +02:00
|
|
|
, libX11 ? null
|
2017-01-21 14:25:19 +01:00
|
|
|
, gtk2 ? null
|
2020-01-15 12:39:52 +01:00
|
|
|
, python2 ? null
|
2017-01-21 14:25:19 +01:00
|
|
|
, makeWrapper ? null
|
2019-03-16 16:56:45 +01:00
|
|
|
, withLua ? true
|
2008-05-22 13:39:30 +02:00
|
|
|
}:
|
2013-06-06 09:13:08 +02:00
|
|
|
|
2014-04-03 21:07:52 +02:00
|
|
|
with stdenv.lib;
|
2016-08-14 13:52:23 +02:00
|
|
|
|
2020-01-15 12:39:52 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-04-03 21:07:52 +02:00
|
|
|
name = "nmap${optionalString graphicalSupport "-graphical"}-${version}";
|
2019-08-20 01:56:10 +02:00
|
|
|
version = "7.80";
|
2007-08-04 14:49:53 +02:00
|
|
|
|
2004-08-06 12:00:53 +02:00
|
|
|
src = fetchurl {
|
2016-10-27 13:55:08 +02:00
|
|
|
url = "https://nmap.org/dist/nmap-${version}.tar.bz2";
|
2019-08-20 01:56:10 +02:00
|
|
|
sha256 = "1aizfys6l9f9grm82bk878w56mg0zpkfns3spzj157h98875mypw";
|
2008-05-22 13:39:30 +02:00
|
|
|
};
|
2007-08-04 14:49:53 +02:00
|
|
|
|
2019-05-20 05:24:43 +02: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-24 06:57:35 +02:00
|
|
|
includes = [ "nping/EchoServer.cc" ];
|
|
|
|
sha256 = "0xcph9mycy57yryjg253frxyz87c4135rrbndlqw1400c8jxq70c";
|
2019-05-20 05:24:43 +02:00
|
|
|
}
|
|
|
|
)];
|
2013-06-06 09:13:08 +02:00
|
|
|
|
2017-09-18 22:01:28 +02: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 16:56:45 +01:00
|
|
|
configureFlags = [
|
|
|
|
(if withLua then "--with-liblua=${lua5_3}" else "--without-liblua")
|
2020-01-15 12:39:52 +01:00
|
|
|
] ++ optionals (!graphicalSupport) [ "--without-ndiff" "--without-zenmap" ];
|
2014-12-29 06:18:49 +01:00
|
|
|
|
2018-10-19 10:30:36 +02: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 12:39:52 +01:00
|
|
|
pythonPath = with python2.pkgs; optionals graphicalSupport [
|
|
|
|
pygtk pysqlite pygobject2 pycairo
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ] ++ optionals graphicalSupport [ python2.pkgs.wrapPython ];
|
|
|
|
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 14:25:19 +01:00
|
|
|
'';
|
|
|
|
|
2020-01-15 12:39:52 +01:00
|
|
|
enableParallelBuilding = true;
|
2014-01-28 18:11:00 +01:00
|
|
|
|
2018-04-25 05:20:18 +02:00
|
|
|
doCheck = false; # fails 3 tests, probably needs the net
|
|
|
|
|
2014-03-16 22:53:08 +01:00
|
|
|
meta = {
|
2014-11-11 14:20:43 +01:00
|
|
|
description = "A free and open source utility for network discovery and security auditing";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.nmap.org";
|
2014-04-03 21:07:52 +02:00
|
|
|
license = licenses.gpl2;
|
2015-03-18 23:51:19 +01:00
|
|
|
platforms = platforms.all;
|
2018-01-17 06:13:23 +01:00
|
|
|
maintainers = with maintainers; [ thoughtpolice fpletz ];
|
2014-01-28 18:11:00 +01:00
|
|
|
};
|
2010-07-22 12:31:39 +02:00
|
|
|
}
|