Merge pull request #318277 from Ma27/bump-zmap

zmap: 3.0.0 -> 4.1.1
This commit is contained in:
Fabian Affolter 2024-06-09 10:04:22 +02:00 committed by GitHub
commit e26ad74eee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,22 +1,22 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libjson, json_c, gengetopt, flex, byacc, gmp
, libpcap, libunistring
, libpcap, libunistring, judy
}:
stdenv.mkDerivation rec {
pname = "zmap";
version = "3.0.0";
version = "4.1.1";
src = fetchFromGitHub {
owner = "zmap";
repo = pname;
rev = "v${version}";
sha256 = "sha256-OJZKcnsuBi3z/AI05RMBitgn01bhVTqx2jFYJLuIJk4=";
sha256 = "sha256-ftdjIBAAe+3qUEHoNMAOCmzy+PWD4neIMWvFXFi2JFo=";
};
cmakeFlags = [ "-DRESPECT_INSTALL_PREFIX_CONFIG=ON" ];
nativeBuildInputs = [ cmake pkg-config gengetopt flex byacc ];
buildInputs = [ libjson json_c gmp libpcap libunistring ];
buildInputs = [ libjson json_c gmp libpcap libunistring judy ];
outputs = [ "out" "man" ];