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