2014-01-15 15:51:15 +00:00
|
|
|
{ stdenv, fetchurl, eventlog, pkgconfig, glib, python }:
|
2009-02-05 16:50:45 +00:00
|
|
|
|
2010-09-08 13:28:05 +00:00
|
|
|
stdenv.mkDerivation {
|
2014-01-15 15:45:01 +00:00
|
|
|
name = "syslog-ng-3.5.3";
|
2010-09-08 13:28:05 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-01-15 15:45:01 +00:00
|
|
|
url = "http://www.balabit.com/downloads/files?path=/syslog-ng/sources/3.5.3/source/syslog-ng_3.5.3.tar.gz";
|
|
|
|
sha256 = "1l3424qn9bf9z742pqba8x3dj7g729asimmhlizv1rvjlaxa2jd3";
|
2010-09-08 13:28:05 +00:00
|
|
|
};
|
|
|
|
|
2014-01-15 15:51:15 +00:00
|
|
|
buildInputs = [ eventlog pkgconfig glib python ];
|
2010-09-08 13:28:05 +00:00
|
|
|
configureFlags = "--enable-dynamic-linking";
|
|
|
|
|
2009-02-05 16:50:45 +00:00
|
|
|
meta = {
|
|
|
|
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";
|
2009-02-05 16:50:45 +00:00
|
|
|
license = "GPLv2";
|
|
|
|
};
|
|
|
|
}
|