3
0
Fork 0
forked from mirrors/nixpkgs

Zenmap - nmap graphical interface - now works

svn path=/nixpkgs/trunk/; revision=11269
This commit is contained in:
Michael Raskin 2008-03-22 20:56:23 +00:00
parent 0592ed6a11
commit 32bc662263
2 changed files with 14 additions and 6 deletions

View file

@ -1,5 +1,6 @@
{stdenv, fetchurl, libpcap, libX11, gtk, pkgconfig,
openssl, python, pygtk}:
openssl, python, pygtk, makeWrapper, pygobject,
pycairo, pysqlite}:
stdenv.mkDerivation {
name = "Nmap";
@ -7,6 +8,10 @@ stdenv.mkDerivation {
url = http://download.insecure.org/nmap/dist/nmap-4.60.tar.bz2;
sha256 = "1jhway86lmrnyzvwi24ama1vrz89f9nmln29vr92kb31aw2nl30w"; };
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];
pygtk makeWrapper pysqlite];
}

View file

@ -813,7 +813,8 @@ let pkgs = rec {
nmap = import ../tools/security/nmap {
inherit fetchurl stdenv libpcap pkgconfig openssl
python pygtk;
python pygtk makeWrapper pygobject pycairo
pysqlite;
inherit (xlibs) libX11;
inherit (gtkLibs) gtk;
};
@ -6222,9 +6223,11 @@ let pkgs = rec {
pythonBindings = true; # Enable python bindings
};
pysqlite = import ../development/libraries/pysqlite {
inherit stdenv fetchurl python sqlite;
};
inherit pysqlite;
};
pysqlite = import ../development/libraries/pysqlite {
inherit stdenv fetchurl python sqlite;
};
wine = import ../misc/emulators/wine {