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