nixpkgs/pkgs/tools/security/nmap/default.nix

52 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, libpcap, pkgconfig, openssl
, graphicalSupport ? false
, gtk2 ? null
2016-09-22 18:57:34 +01:00
, libX11 ? null
, withPython ? false # required for the `ndiff` binary
2016-09-22 18:57:34 +01:00
, python2 ? null
}:
2016-09-22 18:57:34 +01:00
assert withPython -> python2 != null;
with stdenv.lib;
let
# Zenmap (the graphical program) also requires Python,
# so automatically enable pythonSupport if graphicalSupport is requested.
pythonSupport = withPython || graphicalSupport;
2016-09-22 18:57:34 +01:00
pythonEnv = python2.withPackages(ps: with ps; []
++ optionals graphicalSupport [ pycairo pygobject2 pygtk pysqlite ]
);
in stdenv.mkDerivation rec {
name = "nmap${optionalString graphicalSupport "-graphical"}-${version}";
2016-08-07 15:43:02 +01:00
version = "7.12";
src = fetchurl {
url = "http://nmap.org/dist/nmap-${version}.tar.bz2";
2016-08-07 15:43:02 +01:00
sha256 = "014vagh9ak10hidwzp9s6g30y5h5fhsh8wykcnc1hnn9hwm0ipv3";
};
patches = ./zenmap.patch;
configureFlags = []
++ optional (!pythonSupport) "--without-ndiff"
++ optional (!graphicalSupport) "--without-zenmap"
;
2016-09-22 18:57:34 +01:00
buildInputs = [ libpcap pkgconfig openssl ]
++ optional pythonSupport pythonEnv
++ optionals graphicalSupport [ gtk2 libX11 ]
;
2014-01-28 17:11:00 +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;
license = licenses.gpl2;
platforms = platforms.all;
2016-08-07 15:43:02 +01:00
maintainers = with maintainers; [ mornfall thoughtpolice fpletz ];
2014-01-28 17:11:00 +00:00
};
}