0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

suricata: 6.0.13 -> 7.0.0

This commit is contained in:
Alexandre Iooss 2023-07-19 10:19:40 +02:00 committed by Anderson Torres
parent c3784eb94b
commit 24a04f48c1
2 changed files with 6 additions and 7 deletions

View file

@ -152,6 +152,8 @@ The module update takes care of the new config syntax and the data itself (user
- `boot.initrd.network.udhcp.enable` allows control over dhcp during stage 1 regardless of what `networking.useDHCP` is set to. - `boot.initrd.network.udhcp.enable` allows control over dhcp during stage 1 regardless of what `networking.useDHCP` is set to.
- Suricata was upgraded from 6.0 to 7.0 and no longer considers HTTP/2 support as experimental, see [upstream release notes](https://forum.suricata.io/t/suricata-7-0-0-released/3715) for more details.
## Nixpkgs internals {#sec-release-23.11-nixpkgs-internals} ## Nixpkgs internals {#sec-release-23.11-nixpkgs-internals}
- The `qemu-vm.nix` module by default now identifies block devices via - The `qemu-vm.nix` module by default now identifies block devices via

View file

@ -22,8 +22,7 @@
, luajit , luajit
, lz4 , lz4
, nspr , nspr
, nss , pcre2
, pcre
, python , python
, zlib , zlib
, redisSupport ? true, redis, hiredis , redisSupport ? true, redis, hiredis
@ -34,11 +33,11 @@
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "suricata"; pname = "suricata";
version = "6.0.13"; version = "7.0.0";
src = fetchurl { src = fetchurl {
url = "https://www.openinfosecfoundation.org/download/${pname}-${version}.tar.gz"; url = "https://www.openinfosecfoundation.org/download/${pname}-${version}.tar.gz";
hash = "sha256-4J8vgA0ODNL5fyHFBZUMzD27nOXP6AjflWe22EmjEFU="; hash = "sha256-e80TExGDZkUUZdw/g4Wj9qrdCE/+RN0lfdqBBYY7t2k=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -67,8 +66,7 @@ stdenv.mkDerivation rec {
luajit luajit
lz4 lz4
nspr nspr
nss pcre2
pcre
python python
zlib zlib
] ]
@ -101,7 +99,6 @@ stdenv.mkDerivation rec {
"--enable-nflog" "--enable-nflog"
"--enable-nfqueue" "--enable-nfqueue"
"--enable-pie" "--enable-pie"
"--disable-prelude"
"--enable-python" "--enable-python"
"--enable-unix-socket" "--enable-unix-socket"
"--localstatedir=/var" "--localstatedir=/var"