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

67 lines
1.4 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}";
2018-06-26 07:41:30 +02:00
version = "3.16.1";
2017-02-15 01:49:51 +01:00
src = fetchurl {
url = "https://github.com/balabit/${pname}/releases/download/${name}/${name}.tar.gz";
2018-06-26 07:41:30 +02:00
sha256 = "0a9snxvs3fsv0gm5q9xkrcg0hwgs3c8q1rb434cnzn4qbqfnzvn7";
};
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" ];
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;
};
}