lol
1{stdenv, fetchurl, cmake, flex, bison, openssl, libpcap, perl, zlib, file, curl
2, geoip, gperftools, python, swig }:
3
4stdenv.mkDerivation rec {
5 name = "bro-2.5.3";
6
7 src = fetchurl {
8 url = "http://www.bro.org/downloads/${name}.tar.gz";
9 sha256 = "09b227j1c0ggihbhbyphd7lnh26mpz07z1s0h148dg6fwqagm13k";
10 };
11
12 nativeBuildInputs = [ cmake flex bison file ];
13 buildInputs = [ openssl libpcap perl zlib curl geoip gperftools python swig ];
14
15 enableParallelBuilding = true;
16
17 meta = with stdenv.lib; {
18 description = "Powerful network analysis framework much different from a typical IDS";
19 homepage = https://www.bro.org/;
20 license = licenses.bsd3;
21 maintainers = with maintainers; [ pSub ];
22 platforms = with platforms; linux;
23 };
24}