2019-05-20 05:24:43 +02:00
|
|
|
{ stdenv, fetchurl, fetchpatch, libpcap, pkgconfig, openssl, lua5_3
|
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
|
2016-09-02 05:52:34 +02:00
|
|
|
, withPython ? false # required for the `ndiff` binary
|
2017-01-21 14:25:19 +01:00
|
|
|
, python2Packages ? null
|
|
|
|
, 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
|
|
|
|
2017-01-21 14:25:19 +01:00
|
|
|
assert withPython -> python2Packages != null;
|
2016-09-02 05:52:34 +02:00
|
|
|
|
2014-04-03 21:07:52 +02:00
|
|
|
with stdenv.lib;
|
2016-08-14 13:52:23 +02:00
|
|
|
|
|
|
|
let
|
2016-09-02 05:52:34 +02:00
|
|
|
|
|
|
|
# Zenmap (the graphical program) also requires Python,
|
|
|
|
# so automatically enable pythonSupport if graphicalSupport is requested.
|
|
|
|
pythonSupport = withPython || graphicalSupport;
|
|
|
|
|
2016-08-14 13:52:23 +02:00
|
|
|
in 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.
|
|
|
|
# Also fixes a missing include.
|
|
|
|
# https://github.com/nmap/nmap/pull/1363
|
|
|
|
fetchpatch {
|
|
|
|
url = "https://github.com/nmap/nmap/commit/5bbe66f1bd8cbd3718f5805139e2e8139e6849bb.diff";
|
|
|
|
sha256 = "088r8ylpc9hachsxs4r17cqfa1ncyspbjvkc573lill7rk1r9m0s";
|
|
|
|
}
|
|
|
|
)];
|
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")
|
|
|
|
]
|
2016-09-02 05:52:34 +02:00
|
|
|
++ optional (!pythonSupport) "--without-ndiff"
|
|
|
|
++ optional (!graphicalSupport) "--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"
|
|
|
|
];
|
|
|
|
|
2017-01-21 14:25:19 +01:00
|
|
|
postInstall = optionalString pythonSupport ''
|
|
|
|
wrapProgram $out/bin/ndiff --prefix PYTHONPATH : "$(toPythonPath $out)" --prefix PYTHONPATH : "$PYTHONPATH"
|
|
|
|
'' + optionalString graphicalSupport ''
|
|
|
|
wrapProgram $out/bin/zenmap --prefix PYTHONPATH : "$(toPythonPath $out)" --prefix PYTHONPATH : "$PYTHONPATH" --prefix PYTHONPATH : $(toPythonPath $pygtk)/gtk-2.0 --prefix PYTHONPATH : $(toPythonPath $pygobject)/gtk-2.0 --prefix PYTHONPATH : $(toPythonPath $pycairo)/gtk-2.0
|
|
|
|
'';
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = with python2Packages; [ libpcap openssl ]
|
2017-01-21 14:25:19 +01:00
|
|
|
++ optionals pythonSupport [ makeWrapper python ]
|
|
|
|
++ optionals graphicalSupport [
|
|
|
|
libX11 gtk2 pygtk pysqlite pygobject2 pycairo
|
|
|
|
];
|
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";
|
|
|
|
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
|
|
|
}
|