nmap: lua scripting support is optional

wip/yesman
Michael Eden 5 years ago
parent 33e9fa2367
commit e532d292d7
  1. 5
      pkgs/tools/security/nmap/default.nix

@ -5,6 +5,7 @@
, withPython ? false # required for the `ndiff` binary
, python2Packages ? null
, makeWrapper ? null
, withLua ? true
}:
assert withPython -> python2Packages != null;
@ -35,7 +36,9 @@ in stdenv.mkDerivation rec {
--replace 'ARFLAGS="-o"' 'ARFLAGS="-r"'
'';
configureFlags = [ "--with-liblua=${lua5_3}" ]
configureFlags = [
(if withLua then "--with-liblua=${lua5_3}" else "--without-liblua")
]
++ optional (!pythonSupport) "--without-ndiff"
++ optional (!graphicalSupport) "--without-zenmap"
;

Loading…
Cancel
Save