suricata: 4.1.4 -> 4.1.5 (#70801)
* suricata: 4.1.4 -> 4.1.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/suricata/versions * suricata: fix Hyperscan includes location + add lz4 to build inputs for compressed pcap
This commit is contained in:
parent
e77a6ec5e4
commit
6d847007ad
|
@ -16,6 +16,7 @@
|
||||||
, libpcap
|
, libpcap
|
||||||
, libyaml
|
, libyaml
|
||||||
, luajit
|
, luajit
|
||||||
|
, lz4
|
||||||
, nspr
|
, nspr
|
||||||
, nss
|
, nss
|
||||||
, pcre
|
, pcre
|
||||||
|
@ -29,11 +30,11 @@
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "suricata";
|
pname = "suricata";
|
||||||
version = "4.1.4";
|
version = "4.1.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://www.openinfosecfoundation.org/download/${pname}-${version}.tar.gz";
|
url = "https://www.openinfosecfoundation.org/download/${pname}-${version}.tar.gz";
|
||||||
sha256 = "02901wjf90171rhkymcgp0h48hkn3wv8iwrhz4d8ppraz68hv99d";
|
sha256 = "0jy738rs3ds1gbn8hv26ck23z9k6pjrjxdpavkyn7znpbi9zdrff";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -54,6 +55,7 @@ stdenv.mkDerivation rec {
|
||||||
libpcap
|
libpcap
|
||||||
libyaml
|
libyaml
|
||||||
luajit
|
luajit
|
||||||
|
lz4
|
||||||
nspr
|
nspr
|
||||||
nss
|
nss
|
||||||
pcre
|
pcre
|
||||||
|
@ -86,7 +88,7 @@ stdenv.mkDerivation rec {
|
||||||
"--with-libnet-libraries=${libnet}/lib"
|
"--with-libnet-libraries=${libnet}/lib"
|
||||||
]
|
]
|
||||||
++ lib.optional hyperscanSupport [
|
++ lib.optional hyperscanSupport [
|
||||||
"--with-libhs-includes=${hyperscan}/include"
|
"--with-libhs-includes=${hyperscan.dev}/include/hs"
|
||||||
"--with-libhs-libraries=${hyperscan}/lib"
|
"--with-libhs-libraries=${hyperscan}/lib"
|
||||||
]
|
]
|
||||||
++ lib.optional redisSupport [ "--enable-hiredis" ]
|
++ lib.optional redisSupport [ "--enable-hiredis" ]
|
||||||
|
|
Loading…
Reference in New Issue