zeek: 3.1.2 -> 3.1.5

This commit is contained in:
Mario Rodas 2020-07-28 00:00:00 +00:00
parent 3f19239ee0
commit 4ab428bb98
No known key found for this signature in database
GPG key ID: 325649BCA6D53027

View file

@ -1,19 +1,35 @@
{stdenv, fetchurl, cmake, flex, bison, openssl, libpcap, zlib, file, curl { stdenv
, libmaxminddb, gperftools, python, swig, fetchpatch }: , fetchurl
, cmake
, flex
, bison
, openssl
, libpcap
, zlib
, file
, curl
, libmaxminddb
, gperftools
, python
, swig
, gettext
, fetchpatch
}:
let let
preConfigure = (import ./script.nix); preConfigure = (import ./script.nix);
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "zeek"; pname = "zeek";
version = "3.1.2"; version = "3.1.5";
src = fetchurl { src = fetchurl {
url = "https://download.zeek.org/zeek-${version}.tar.gz"; url = "https://download.zeek.org/zeek-${version}.tar.gz";
sha256 = "18aa4pfwav8m6vq7cr4bhfg243da54ak933rqbriljnhsrgp4n0q"; sha256 = "1rwrwdx0jf76pb11vpmv5z513ss9rrkgpjv1pa1vydf4gbafhi5r";
}; };
nativeBuildInputs = [ cmake flex bison file ]; nativeBuildInputs = [ cmake flex bison file ];
buildInputs = [ openssl libpcap zlib curl libmaxminddb gperftools python swig ]; buildInputs = [ openssl libpcap zlib curl libmaxminddb gperftools python swig ]
++ stdenv.lib.optionals stdenv.isDarwin [ gettext ];
#see issue https://github.com/zeek/zeek/issues/804 to modify hardlinking duplicate files. #see issue https://github.com/zeek/zeek/issues/804 to modify hardlinking duplicate files.
inherit preConfigure; inherit preConfigure;