2014-04-03 23:07:52 +04:00
|
|
|
{ stdenv, fetchurl, libpcap, pkgconfig, openssl
|
|
|
|
, graphicalSupport ? false
|
|
|
|
, libX11 ? null
|
|
|
|
, gtk ? null
|
|
|
|
, python ? null
|
|
|
|
, pygtk ? null
|
|
|
|
, makeWrapper ? null
|
|
|
|
, pygobject ? null
|
|
|
|
, pycairo ? null
|
|
|
|
, pysqlite ? null
|
2008-05-22 15:39:30 +04:00
|
|
|
}:
|
2013-06-06 11:13:08 +04:00
|
|
|
|
2014-04-03 23:07:52 +04:00
|
|
|
with stdenv.lib;
|
2010-07-22 14:31:39 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2014-04-03 23:07:52 +04:00
|
|
|
name = "nmap${optionalString graphicalSupport "-graphical"}-${version}";
|
2014-12-29 08:18:49 +03:00
|
|
|
version = "6.47";
|
2007-08-04 16:49:53 +04:00
|
|
|
|
2004-08-06 14:00:53 +04:00
|
|
|
src = fetchurl {
|
2014-12-29 08:18:49 +03:00
|
|
|
url = "http://nmap.org/dist/nmap-${version}.tar.bz2";
|
|
|
|
sha256 = "14d53aji4was68c01pf105n5ylha257wmdbx40ddiqiw42g1x8cg";
|
2008-05-22 15:39:30 +04:00
|
|
|
};
|
2007-08-04 16:49:53 +04:00
|
|
|
|
2014-12-29 08:18:49 +03:00
|
|
|
patches = ./zenmap.patch;
|
2013-06-06 11:13:08 +04:00
|
|
|
|
2014-12-29 08:18:49 +03:00
|
|
|
configureFlags = optionalString (!graphicalSupport) "--without-zenmap";
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/ndiff --prefix PYTHONPATH : "$(toPythonPath $out)" --prefix PYTHONPATH : "$PYTHONPATH"
|
|
|
|
'' + optionalString graphicalSupport ''
|
2010-07-22 14:31:39 +04:00
|
|
|
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
|
2014-04-03 23:07:52 +04:00
|
|
|
'';
|
2010-07-22 14:31:39 +04:00
|
|
|
|
2014-12-29 21:55:09 +03:00
|
|
|
buildInputs = [ libpcap pkgconfig openssl makeWrapper python ]
|
2014-04-03 23:07:52 +04:00
|
|
|
++ optionals graphicalSupport [
|
2014-12-29 21:55:09 +03:00
|
|
|
libX11 gtk pygtk pysqlite pygobject pycairo
|
2014-04-03 23:07:52 +04:00
|
|
|
];
|
2014-01-28 21:11:00 +04:00
|
|
|
|
2014-03-17 01:53:08 +04:00
|
|
|
meta = {
|
2014-11-11 16:20:43 +03:00
|
|
|
description = "A free and open source utility for network discovery and security auditing";
|
|
|
|
homepage = http://www.nmap.org;
|
2014-04-03 23:07:52 +04:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ mornfall thoughtpolice ];
|
2014-01-28 21:11:00 +04:00
|
|
|
};
|
2010-07-22 14:31:39 +04:00
|
|
|
}
|