Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e77a6ec5e4db
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6d847007ad3c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 15, 2019

  1. 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
    r-ryantm authored and c0bw3b committed Oct 15, 2019
    Copy the full SHA
    6d84700 View commit details
Showing with 5 additions and 3 deletions.
  1. +5 −3 pkgs/applications/networking/ids/suricata/default.nix
8 changes: 5 additions & 3 deletions pkgs/applications/networking/ids/suricata/default.nix
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@
, libpcap
, libyaml
, luajit
, lz4
, nspr
, nss
, pcre
@@ -29,11 +30,11 @@
in
stdenv.mkDerivation rec {
pname = "suricata";
version = "4.1.4";
version = "4.1.5";

src = fetchurl {
url = "https://www.openinfosecfoundation.org/download/${pname}-${version}.tar.gz";
sha256 = "02901wjf90171rhkymcgp0h48hkn3wv8iwrhz4d8ppraz68hv99d";
sha256 = "0jy738rs3ds1gbn8hv26ck23z9k6pjrjxdpavkyn7znpbi9zdrff";
};

nativeBuildInputs = [
@@ -54,6 +55,7 @@ stdenv.mkDerivation rec {
libpcap
libyaml
luajit
lz4
nspr
nss
pcre
@@ -86,7 +88,7 @@ stdenv.mkDerivation rec {
"--with-libnet-libraries=${libnet}/lib"
]
++ lib.optional hyperscanSupport [
"--with-libhs-includes=${hyperscan}/include"
"--with-libhs-includes=${hyperscan.dev}/include/hs"
"--with-libhs-libraries=${hyperscan}/lib"
]
++ lib.optional redisSupport [ "--enable-hiredis" ]