python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / nmap / default.nix
blobd6276b3cc40eb18651194252804f7595e7d95b61
1 { lib, stdenv, fetchurl, fetchpatch, libpcap, pkg-config, openssl, lua5_3
2 , pcre, libssh2
3 , libX11 ? null
4 , gtk2 ? null
5 , makeWrapper ? null
6 , withLua ? true
7 }:
9 with lib;
11 stdenv.mkDerivation rec {
12   pname = "nmap";
13   version = "7.93";
15   src = fetchurl {
16     url = "https://nmap.org/dist/nmap-${version}.tar.bz2";
17     sha256 = "sha256-Vbz+R5PiWsyWukJ02MQijbVQuOjv1yAEs47FWi3RZlE=";
18   };
20   patches = [ ./zenmap.patch ]
21     ++ optionals stdenv.cc.isClang [(
22       # Fixes a compile error due an ambiguous reference to bind(2) in
23       # nping/EchoServer.cc, which is otherwise resolved to std::bind.
24       # https://github.com/nmap/nmap/pull/1363
25       fetchpatch {
26         url = "https://github.com/nmap/nmap/commit/5bbe66f1bd8cbd3718f5805139e2e8139e6849bb.diff";
27         includes = [ "nping/EchoServer.cc" ];
28         sha256 = "0xcph9mycy57yryjg253frxyz87c4135rrbndlqw1400c8jxq70c";
29       }
30     )];
32   prePatch = optionalString stdenv.isDarwin ''
33     substituteInPlace libz/configure \
34         --replace /usr/bin/libtool ar \
35         --replace 'AR="libtool"' 'AR="ar"' \
36         --replace 'ARFLAGS="-o"' 'ARFLAGS="-r"'
37   '';
39   configureFlags = [
40     (if withLua then "--with-liblua=${lua5_3}" else "--without-liblua")
41     "--with-liblinear=included"
42     "--without-ndiff"
43     "--without-zenmap"
44   ];
46   makeFlags = optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
47     "AR=${stdenv.cc.bintools.targetPrefix}ar"
48     "RANLIB=${stdenv.cc.bintools.targetPrefix}ranlib"
49     "CC=${stdenv.cc.targetPrefix}gcc"
50   ];
52   nativeBuildInputs = [ pkg-config ];
53   buildInputs = [ pcre libssh2 libpcap openssl ];
55   enableParallelBuilding = true;
57   doCheck = false; # fails 3 tests, probably needs the net
59   meta = {
60     description = "A free and open source utility for network discovery and security auditing";
61     homepage    = "http://www.nmap.org";
62     license     = licenses.gpl2;
63     platforms   = platforms.all;
64     maintainers = with maintainers; [ thoughtpolice fpletz ];
65   };