28ac782583
There are many more packages to fix, this is just a start. Rules: * Don't repeat the package name (not always that easy...) * Start with capital letter * Don't end with full stop * Don't start with "The ..." or "A ..." I've also added descriptions to some packages and rewritten others.
23 lines
651 B
Nix
23 lines
651 B
Nix
{stdenv, fetchurl, cmake, flex, bison, openssl, libpcap, perl, zlib, file, curl, geoip, gperftools }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "bro-2.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.bro.org/downloads/release/${name}.tar.gz";
|
|
sha256 = "1q2mm7rbgjcn01na2wm5fdfdm9pggzgljxj0n127s93fip3vg0qd";
|
|
};
|
|
|
|
buildInputs = [ cmake flex bison openssl libpcap perl zlib file curl geoip gperftools ];
|
|
|
|
USER="something";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Powerful network analysis framework that is much different from the typical IDS you may know";
|
|
homepage = http://www.bro.org/;
|
|
license = "BSD";
|
|
};
|
|
}
|