2014-11-06 20:47:02 +00:00
|
|
|
{ stdenv, fetchurl, eventlog, pkgconfig, glib, python, systemd, perl
|
|
|
|
, riemann_c_client, protobufc, yacc }:
|
2009-02-05 16:50:45 +00:00
|
|
|
|
2014-08-06 10:10:07 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "syslog-ng-${version}";
|
|
|
|
|
2015-03-11 01:07:43 +00:00
|
|
|
version = "3.6.2";
|
2010-09-08 13:28:05 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-06 10:10:07 +00:00
|
|
|
url = "http://www.balabit.com/downloads/files?path=/syslog-ng/sources/${version}/source/syslog-ng_${version}.tar.gz";
|
2015-03-11 01:07:43 +00:00
|
|
|
sha256 = "0qc21mwajk6xrra3gqy2nvaza5gq62psamq4ayphj7lqabdglizg";
|
2010-09-08 13:28:05 +00:00
|
|
|
};
|
|
|
|
|
2014-11-06 20:47:02 +00:00
|
|
|
buildInputs = [ eventlog pkgconfig glib python systemd perl riemann_c_client protobufc yacc ];
|
2014-06-24 21:52:54 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-dynamic-linking"
|
|
|
|
"--enable-systemd"
|
|
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
|
|
|
];
|
2010-09-08 13:28:05 +00:00
|
|
|
|
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;
|
|
|
|
maintainers = [ maintainers.rickynils ];
|
2009-02-05 16:50:45 +00:00
|
|
|
};
|
|
|
|
}
|