nixpkgs/pkgs/tools/system/syslog-ng-incubator/default.nix
Franz Pletz ea309fcf48
syslogng_incubator: 141106 -> 0.5.0, mark as broken
This is the current release but neither this nor the current master
is compatible with syslog-ng 3.8+. Committed work on update and
refactor of expression to make it easier in the future to bump.
2017-02-15 01:58:54 +01:00

35 lines
950 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib, syslogng
, eventlog, perl, python, yacc, protobufc, libivykis
}:
stdenv.mkDerivation rec {
name = "syslog-ng-incubator-${version}";
version = "0.5.0";
src = fetchFromGitHub {
owner = "balabit";
repo = "syslog-ng-incubator";
rev = name;
sha256 = "00j123ya0xfj1jicaqnk1liffx07mhhf0r406pabxjjj97gy8nlk";
};
nativeBuildInputs = [ pkgconfig autoreconfHook yacc ];
buildInputs = [
glib syslogng eventlog perl python protobufc libivykis
];
configureFlags = [
"--with-module-dir=$(out)/lib/syslog-ng"
];
meta = with stdenv.lib; {
homepage = "https://github.com/balabit/syslog-ng-incubator";
description = "A collection of tools and modules for syslog-ng";
license = licenses.gpl2;
maintainers = [ maintainers.rickynils ];
platforms = platforms.linux;
broken = true; # does not work with our new syslog-ng version yet
};
}