nixpkgs/pkgs/tools/system/syslog-ng/default.nix

69 lines
1.5 KiB
Nix
Raw Normal View History

2017-02-15 01:49:51 +01:00
{ stdenv, fetchurl, openssl, libcap, curl, which
, eventlog, pkgconfig, glib, python, systemd, perl
2017-02-15 01:49:51 +01:00
, riemann_c_client, protobufc, pcre, libnet
2018-03-22 19:54:22 +01:00
, json_c, libuuid, libivykis, mongoc, rabbitmq-c
, libesmtp
}:
2017-02-15 01:49:51 +01:00
let
pname = "syslog-ng";
in
stdenv.mkDerivation rec {
2017-02-15 01:49:51 +01:00
name = "${pname}-${version}";
version = "3.21.1";
2017-02-15 01:49:51 +01:00
src = fetchurl {
url = "https://github.com/balabit/${pname}/releases/download/${name}/${name}.tar.gz";
sha256 = "09fdjschp3shy8xp0hh5fh6qv25433zd0biv0igkmkvrmnjks5ld";
};
2017-02-15 01:49:51 +01:00
nativeBuildInputs = [ pkgconfig which ];
buildInputs = [
2017-02-15 01:49:51 +01:00
libcap
curl
openssl
eventlog
glib
2017-02-15 01:49:51 +01:00
perl
python
systemd
riemann_c_client
protobufc
pcre
2017-02-15 01:49:51 +01:00
libnet
json_c
libuuid
libivykis
mongoc
rabbitmq-c
2018-03-22 19:54:22 +01:00
libesmtp
];
2014-06-24 23:52:54 +02:00
configureFlags = [
2017-02-15 01:49:51 +01:00
"--enable-manpages"
2014-06-24 23:52:54 +02:00
"--enable-dynamic-linking"
"--enable-systemd"
2018-03-22 19:54:22 +01:00
"--enable-smtp"
2017-02-15 01:49:51 +01:00
"--with-ivykis=system"
"--with-librabbitmq-client=system"
"--with-mongoc=system"
"--with-jsonc=system"
"--with-systemd-journal=system"
2014-06-24 23:52:54 +02:00
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
];
2017-02-15 01:49:51 +01:00
outputs = [ "out" "man" ];
2018-09-25 13:53:18 +02:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
2018-07-06 03:35:28 +02:00
homepage = https://www.balabit.com/network-security/syslog-ng/;
description = "Next-generation syslogd with advanced networking and filtering capabilities";
license = licenses.gpl2;
2017-02-15 01:49:51 +01:00
maintainers = with maintainers; [ rickynils fpletz ];
platforms = platforms.linux;
};
}