2021-01-17 09:17:16 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, glib, syslogng
|
2017-08-24 19:54:55 +01:00
|
|
|
, eventlog, perl, python, yacc, protobufc, libivykis, libcap, czmq
|
2014-11-01 20:44:48 +00:00
|
|
|
}:
|
2014-07-07 17:07:06 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "syslog-ng-incubator";
|
2018-02-25 17:48:58 +00:00
|
|
|
version = "0.6.2";
|
2014-07-07 17:07:06 +01:00
|
|
|
|
2014-11-01 20:44:48 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "balabit";
|
|
|
|
repo = "syslog-ng-incubator";
|
2019-08-15 13:41:18 +01:00
|
|
|
rev = "${pname}-${version}";
|
2018-02-25 17:48:58 +00:00
|
|
|
sha256 = "17y85cqcyfbp882gaii731cvz5bg1s8rgda271jh6kgnrz5rbd4s";
|
2014-07-07 17:07:06 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook yacc ];
|
2017-02-15 00:55:51 +00:00
|
|
|
|
2014-07-07 17:07:06 +01:00
|
|
|
buildInputs = [
|
2017-08-24 19:54:55 +01:00
|
|
|
glib syslogng eventlog perl python protobufc libivykis libcap czmq
|
2014-07-07 17:07:06 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-module-dir=$(out)/lib/syslog-ng"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/balabit/syslog-ng-incubator";
|
2014-07-07 17:07:06 +01:00
|
|
|
description = "A collection of tools and modules for syslog-ng";
|
|
|
|
license = licenses.gpl2;
|
2019-08-20 14:24:01 +01:00
|
|
|
maintainers = [];
|
2014-07-07 17:07:06 +01:00
|
|
|
platforms = platforms.linux;
|
2018-08-27 22:15:28 +01:00
|
|
|
broken = true; # 2018-05-12
|
2014-07-07 17:07:06 +01:00
|
|
|
};
|
|
|
|
}
|