bro: 2.5 -> 2.5.1

This commit is contained in:
Franz Pletz 2017-08-27 04:47:22 +02:00
parent 26f10adfa9
commit 80848ce10d
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -1,20 +1,21 @@
{stdenv, fetchurl, cmake, flex, bison, openssl, libpcap, perl, zlib, file, curl {stdenv, fetchurl, cmake, flex, bison, openssl, libpcap, perl, zlib, file, curl
, geoip, gperftools, python }: , geoip, gperftools, python, swig }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "bro-2.5"; name = "bro-2.5.1";
src = fetchurl { src = fetchurl {
url = "http://www.bro.org/downloads/${name}.tar.gz"; url = "http://www.bro.org/downloads/${name}.tar.gz";
sha256 = "10603lwhwsmh08m5rgknbspbhd4lis71qv7z8ixacgv6sf8a40hm"; sha256 = "04cmm0vs8q31mgaq3pxybjk834py3ji16qp4qcir7vjbhq1fav1c";
}; };
buildInputs = [ cmake flex bison openssl libpcap perl zlib file curl geoip gperftools python ]; nativeBuildInputs = [ cmake flex bison file ];
buildInputs = [ openssl libpcap perl zlib curl geoip gperftools python swig ];
enableParallelBuilding = true; enableParallelBuilding = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Powerful network analysis framework that is much different from the typical IDS you may know"; description = "Powerful network analysis framework much different from a typical IDS";
homepage = https://www.bro.org/; homepage = https://www.bro.org/;
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ pSub ]; maintainers = with maintainers; [ pSub ];