2008-05-22 13:39:30 +02:00
|
|
|
{ stdenv, fetchurl, libpcap, libX11, gtk, pkgconfig
|
|
|
|
, openssl, python, pygtk, makeWrapper, pygobject
|
|
|
|
, pycairo, pysqlite
|
|
|
|
}:
|
2013-06-06 09:13:08 +02:00
|
|
|
|
2010-07-22 12:31:39 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2014-03-16 22:53:08 +01:00
|
|
|
name = "nmap-${version}";
|
|
|
|
version = "6.40";
|
2007-08-04 14:49:53 +02:00
|
|
|
|
2004-08-06 12:00:53 +02:00
|
|
|
src = fetchurl {
|
2008-08-29 20:27:45 +02:00
|
|
|
url = "http://nmap.org/dist/${name}.tar.bz2";
|
2013-12-13 09:27:49 +01:00
|
|
|
sha256 = "491f77d8b3fb3bb38ba4e3850011fe6fb43bbe197f9382b88cb59fa4e8f7a401";
|
2008-05-22 13:39:30 +02:00
|
|
|
};
|
2007-08-04 14:49:53 +02:00
|
|
|
|
2013-06-06 09:13:08 +02:00
|
|
|
patches = [ ./zenmap.patch ];
|
|
|
|
|
2010-07-22 12:31:39 +02:00
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ libpcap libX11 gtk pkgconfig openssl python pygtk makeWrapper pysqlite ];
|
2014-01-28 18:11:00 +01:00
|
|
|
|
2014-03-16 22:53:08 +01:00
|
|
|
meta = {
|
|
|
|
description = "A free and open source utility for network discovery and security auditing.";
|
|
|
|
homepage = "http://www.nmap.org";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ mornfall thoughtpolice ];
|
2014-01-28 18:11:00 +01:00
|
|
|
};
|
2010-07-22 12:31:39 +02:00
|
|
|
}
|