2017-02-15 00:49:51 +00:00
|
|
|
{ stdenv, fetchurl, openssl, libcap, curl, which
|
2017-02-13 16:46:05 +00:00
|
|
|
, eventlog, pkgconfig, glib, python, systemd, perl
|
2017-02-15 00:49:51 +00:00
|
|
|
, riemann_c_client, protobufc, pcre, libnet
|
|
|
|
, json_c, libuuid, libivykis, mongoc, rabbitmq-c }:
|
|
|
|
|
|
|
|
let
|
|
|
|
pname = "syslog-ng";
|
|
|
|
in
|
2009-02-05 16:50:45 +00:00
|
|
|
|
2014-08-06 10:10:07 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-02-15 00:49:51 +00:00
|
|
|
name = "${pname}-${version}";
|
2017-02-13 16:46:05 +00:00
|
|
|
version = "3.9.1";
|
2014-08-06 10:10:07 +00:00
|
|
|
|
2017-02-15 00:49:51 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/balabit/${pname}/releases/download/${name}/${name}.tar.gz";
|
|
|
|
sha256 = "05qaqw115py5iz55vmc0j1xcwcpr8wa9vpmbixhr1rqaamm8ay2n";
|
2010-09-08 13:28:05 +00:00
|
|
|
};
|
|
|
|
|
2017-02-15 00:49:51 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig which ];
|
|
|
|
|
2017-02-13 16:46:05 +00:00
|
|
|
buildInputs = [
|
2017-02-15 00:49:51 +00:00
|
|
|
libcap
|
|
|
|
curl
|
2017-02-13 16:46:05 +00:00
|
|
|
openssl
|
|
|
|
eventlog
|
|
|
|
glib
|
2017-02-15 00:49:51 +00:00
|
|
|
perl
|
2017-02-13 16:46:05 +00:00
|
|
|
python
|
|
|
|
systemd
|
|
|
|
riemann_c_client
|
|
|
|
protobufc
|
|
|
|
pcre
|
2017-02-15 00:49:51 +00:00
|
|
|
libnet
|
|
|
|
json_c
|
|
|
|
libuuid
|
|
|
|
libivykis
|
|
|
|
mongoc
|
|
|
|
rabbitmq-c
|
2017-02-13 16:46:05 +00:00
|
|
|
];
|
|
|
|
|
2014-06-24 21:52:54 +00:00
|
|
|
configureFlags = [
|
2017-02-15 00:49:51 +00:00
|
|
|
"--enable-manpages"
|
2014-06-24 21:52:54 +00:00
|
|
|
"--enable-dynamic-linking"
|
|
|
|
"--enable-systemd"
|
2017-02-15 00:49:51 +00:00
|
|
|
"--with-ivykis=system"
|
|
|
|
"--with-librabbitmq-client=system"
|
|
|
|
"--with-mongoc=system"
|
|
|
|
"--with-jsonc=system"
|
|
|
|
"--with-systemd-journal=system"
|
2014-06-24 21:52:54 +00:00
|
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
|
|
|
];
|
2010-09-08 13:28:05 +00:00
|
|
|
|
2017-02-15 00:49:51 +00:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
2014-08-06 10:10:07 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-02-05 16:50:45 +00:00
|
|
|
homepage = "http://www.balabit.com/network-security/syslog-ng/";
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Next-generation syslogd with advanced networking and filtering capabilities";
|
2014-08-06 10:10:07 +00:00
|
|
|
license = licenses.gpl2;
|
2017-02-15 00:49:51 +00:00
|
|
|
maintainers = with maintainers; [ rickynils fpletz ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = platforms.linux;
|
2009-02-05 16:50:45 +00:00
|
|
|
};
|
|
|
|
}
|