nmap: use python infra's .withPackages
This commit is contained in:
parent
0f9ece7929
commit
278d3050ae
@ -1,13 +1,12 @@
|
|||||||
{ stdenv, fetchurl, libpcap, pkgconfig, openssl
|
{ stdenv, fetchurl, libpcap, pkgconfig, openssl
|
||||||
, graphicalSupport ? false
|
, graphicalSupport ? false
|
||||||
, libX11 ? null
|
|
||||||
, gtk2 ? null
|
, gtk2 ? null
|
||||||
|
, libX11 ? null
|
||||||
, withPython ? false # required for the `ndiff` binary
|
, withPython ? false # required for the `ndiff` binary
|
||||||
, python2Packages ? null
|
, python2 ? null
|
||||||
, makeWrapper ? null
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert withPython -> python2Packages != null;
|
assert withPython -> python2 != null;
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
@ -17,6 +16,10 @@ let
|
|||||||
# so automatically enable pythonSupport if graphicalSupport is requested.
|
# so automatically enable pythonSupport if graphicalSupport is requested.
|
||||||
pythonSupport = withPython || graphicalSupport;
|
pythonSupport = withPython || graphicalSupport;
|
||||||
|
|
||||||
|
pythonEnv = python2.withPackages(ps: with ps; []
|
||||||
|
++ optionals graphicalSupport [ pycairo pygobject2 pygtk pysqlite ]
|
||||||
|
);
|
||||||
|
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
name = "nmap${optionalString graphicalSupport "-graphical"}-${version}";
|
name = "nmap${optionalString graphicalSupport "-graphical"}-${version}";
|
||||||
version = "7.12";
|
version = "7.12";
|
||||||
@ -33,17 +36,10 @@ in stdenv.mkDerivation rec {
|
|||||||
++ optional (!graphicalSupport) "--without-zenmap"
|
++ optional (!graphicalSupport) "--without-zenmap"
|
||||||
;
|
;
|
||||||
|
|
||||||
postInstall = optionalString pythonSupport ''
|
buildInputs = [ libpcap pkgconfig openssl ]
|
||||||
wrapProgram $out/bin/ndiff --prefix PYTHONPATH : "$(toPythonPath $out)" --prefix PYTHONPATH : "$PYTHONPATH"
|
++ optional pythonSupport pythonEnv
|
||||||
'' + optionalString graphicalSupport ''
|
++ optionals graphicalSupport [ gtk2 libX11 ]
|
||||||
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 = with python2Packages; [ libpcap pkgconfig openssl ]
|
|
||||||
++ optionals pythonSupport [ makeWrapper python ]
|
|
||||||
++ optionals graphicalSupport [
|
|
||||||
libX11 gtk2 pygtk pysqlite pygobject2 pycairo
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A free and open source utility for network discovery and security auditing";
|
description = "A free and open source utility for network discovery and security auditing";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user