38 python-deps = ps: with ps; [
60 py = python3.withPackages python-deps;
62 stdenv.mkDerivation (finalAttrs: {
66 src = fetchFromGitHub {
69 rev = "syslog-ng-${finalAttrs.version}";
70 hash = "sha256-runFMUxQv7B023I38QfGqn89ZbzA5vMXHOOkYwMxArI=";
71 fetchSubmodules = true;
73 nativeBuildInputs = [ autoreconfHook autoconf-archive pkg-config which bison flex libxslt perl gperf python3Packages.setuptools ];
101 "--with-docbook=${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl"
102 "--enable-dynamic-linking"
105 "--with-python-packages=none"
106 "--with-hiredis=system"
107 "--with-ivykis=system"
108 "--with-librabbitmq-client=system"
109 "--with-mongoc=system"
110 "--with-jsonc=system"
111 "--with-systemd-journal=system"
112 "--with-systemdsystemunitdir=$(out)/etc/systemd/system"
113 "--without-compile-date"
116 outputs = [ "out" "man" ];
118 enableParallelBuilding = true;
121 homepage = "https://www.syslog-ng.com";
122 description = "Next-generation syslogd with advanced networking and filtering capabilities";
123 license = with lib.licenses; [ gpl2Plus lgpl21Plus ];
124 maintainers = with lib.maintainers; [ vifino ];
125 platforms = lib.platforms.linux;