e4bd953fd3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/syslog-ng/versions
69 lines
1.5 KiB
Nix
69 lines
1.5 KiB
Nix
{ stdenv, fetchurl, openssl, libcap, curl, which
|
|
, eventlog, pkgconfig, glib, python, systemd, perl
|
|
, riemann_c_client, protobufc, pcre, libnet
|
|
, json_c, libuuid, libivykis, mongoc, rabbitmq-c
|
|
, libesmtp
|
|
}:
|
|
|
|
let
|
|
pname = "syslog-ng";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
version = "3.20.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/balabit/${pname}/releases/download/${name}/${name}.tar.gz";
|
|
sha256 = "185xixf48rp6isg2bs2y0hm6kf6a8ncncqgz4fd12jf6x6pmhn56";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig which ];
|
|
|
|
buildInputs = [
|
|
libcap
|
|
curl
|
|
openssl
|
|
eventlog
|
|
glib
|
|
perl
|
|
python
|
|
systemd
|
|
riemann_c_client
|
|
protobufc
|
|
pcre
|
|
libnet
|
|
json_c
|
|
libuuid
|
|
libivykis
|
|
mongoc
|
|
rabbitmq-c
|
|
libesmtp
|
|
];
|
|
|
|
configureFlags = [
|
|
"--enable-manpages"
|
|
"--enable-dynamic-linking"
|
|
"--enable-systemd"
|
|
"--enable-smtp"
|
|
"--with-ivykis=system"
|
|
"--with-librabbitmq-client=system"
|
|
"--with-mongoc=system"
|
|
"--with-jsonc=system"
|
|
"--with-systemd-journal=system"
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
|
];
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.balabit.com/network-security/syslog-ng/;
|
|
description = "Next-generation syslogd with advanced networking and filtering capabilities";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ rickynils fpletz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|