lol

suricata: 6.0.13 -> 7.0.0

authored by

Alexandre Iooss and committed by
Anderson Torres
24a04f48 c3784eb9

+6 -7
+2
nixos/doc/manual/release-notes/rl-2311.section.md
··· 152 152 153 153 - `boot.initrd.network.udhcp.enable` allows control over dhcp during stage 1 regardless of what `networking.useDHCP` is set to. 154 154 155 + - 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. 156 + 155 157 ## Nixpkgs internals {#sec-release-23.11-nixpkgs-internals} 156 158 157 159 - The `qemu-vm.nix` module by default now identifies block devices via
+4 -7
pkgs/applications/networking/ids/suricata/default.nix
··· 22 22 , luajit 23 23 , lz4 24 24 , nspr 25 - , nss 26 - , pcre 25 + , pcre2 27 26 , python 28 27 , zlib 29 28 , redisSupport ? true, redis, hiredis ··· 34 33 in 35 34 stdenv.mkDerivation rec { 36 35 pname = "suricata"; 37 - version = "6.0.13"; 36 + version = "7.0.0"; 38 37 39 38 src = fetchurl { 40 39 url = "https://www.openinfosecfoundation.org/download/${pname}-${version}.tar.gz"; 41 - hash = "sha256-4J8vgA0ODNL5fyHFBZUMzD27nOXP6AjflWe22EmjEFU="; 40 + hash = "sha256-e80TExGDZkUUZdw/g4Wj9qrdCE/+RN0lfdqBBYY7t2k="; 42 41 }; 43 42 44 43 nativeBuildInputs = [ ··· 67 66 luajit 68 67 lz4 69 68 nspr 70 - nss 71 - pcre 69 + pcre2 72 70 python 73 71 zlib 74 72 ] ··· 101 99 "--enable-nflog" 102 100 "--enable-nfqueue" 103 101 "--enable-pie" 104 - "--disable-prelude" 105 102 "--enable-python" 106 103 "--enable-unix-socket" 107 104 "--localstatedir=/var"