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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libpcap, pkg-config, openssl, lua5_4
, pcre, libssh2
, withLua ? true
}:
stdenv.mkDerivation rec {
2022-04-26 14:35:10 +00:00
pname = "nmap";
2023-06-21 11:52:02 +00:00
version = "7.94";
src = fetchurl {
2016-10-27 11:55:08 +00:00
url = "https://nmap.org/dist/nmap-${version}.tar.bz2";
2023-06-21 11:52:02 +00:00
sha256 = "sha256-1xvhie7EPX4Jm6yFcVCdMWxFd8p5SRgyrD4SF7yPksw=";
};
prePatch = lib.optionalString stdenv.isDarwin ''
2017-09-18 20:01:28 +00:00
substituteInPlace libz/configure \
--replace /usr/bin/libtool ar \
--replace 'AR="libtool"' 'AR="ar"' \
--replace 'ARFLAGS="-o"' 'ARFLAGS="-r"'
'';
configureFlags = [
(if withLua then "--with-liblua=${lua5_4}" else "--without-liblua")
"--with-liblinear=included"
2022-04-26 14:35:10 +00:00
"--without-ndiff"
"--without-zenmap"
];
makeFlags = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
2018-10-19 08:30:36 +00:00
"AR=${stdenv.cc.bintools.targetPrefix}ar"
"RANLIB=${stdenv.cc.bintools.targetPrefix}ranlib"
"CC=${stdenv.cc.targetPrefix}gcc"
];
2022-04-26 14:35:10 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ pcre libssh2 libpcap openssl ];
enableParallelBuilding = true;
2014-01-28 17:11:00 +00:00
doCheck = false; # fails 3 tests, probably needs the net
meta = with lib; {
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;
maintainers = with maintainers; [ thoughtpolice fpletz ];
2014-01-28 17:11:00 +00:00
};
}