bro: update from 2.1 to 2.3.1

This commit is contained in:
Pascal Wittmann 2014-09-27 19:33:19 +02:00
parent a5e8f410bf
commit a0e82a304f

@ -1,22 +1,21 @@
{stdenv, fetchurl, cmake, flex, bison, openssl, libpcap, perl, zlib, file, curl, geoip, gperftools }:
stdenv.mkDerivation rec {
name = "bro-2.1";
name = "bro-2.3.1";
src = fetchurl {
url = "http://www.bro.org/downloads/release/${name}.tar.gz";
sha256 = "1q2mm7rbgjcn01na2wm5fdfdm9pggzgljxj0n127s93fip3vg0qd";
sha256 = "0008wq20xa3z95ccjspxgx7asvny28r7qlj254zdnbax6cgd4cpz";
};
buildInputs = [ cmake flex bison openssl libpcap perl zlib file curl geoip gperftools ];
USER="something";
enableParallelBuilding = true;
meta = {
meta = with stdenv.lib; {
description = "Powerful network analysis framework that is much different from the typical IDS you may know";
homepage = http://www.bro.org/;
license = "BSD";
license = licenses.bsd3;
maintainers = with maintainers; [ pSub ];
};
}