2014-06-25 12:44:31 +01:00
|
|
|
{ stdenv, fetchurl, eventlog, pkgconfig, glib, python, systemd, perl }:
|
2009-02-05 16:50:45 +00:00
|
|
|
|
2010-09-08 14:28:05 +01:00
|
|
|
stdenv.mkDerivation {
|
2014-05-22 11:54:06 +01:00
|
|
|
name = "syslog-ng-3.5.4.1";
|
2010-09-08 14:28:05 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-05-22 11:54:06 +01:00
|
|
|
url = "http://www.balabit.com/downloads/files?path=/syslog-ng/sources/3.5.4.1/source/syslog-ng_3.5.4.1.tar.gz";
|
|
|
|
sha256 = "0rkgrmnyx1x6m3jw5n49k7r1dcg79lxh900g74rgvd3j86g9dilj";
|
2010-09-08 14:28:05 +01:00
|
|
|
};
|
|
|
|
|
2014-06-25 12:44:31 +01:00
|
|
|
buildInputs = [ eventlog pkgconfig glib python systemd perl ];
|
2014-06-24 22:52:54 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-dynamic-linking"
|
|
|
|
"--enable-systemd"
|
|
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
|
|
|
];
|
2010-09-08 14:28:05 +01:00
|
|
|
|
2009-02-05 16:50:45 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.balabit.com/network-security/syslog-ng/";
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Next-generation syslogd with advanced networking and filtering capabilities";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2009-02-05 16:50:45 +00:00
|
|
|
};
|
|
|
|
}
|