New pkg: syslog-ng-incubator
A collection of tools and modules for syslog-ng
This commit is contained in:
parent
0ee69ef529
commit
233825760c
26
pkgs/development/libraries/libivykis/default.nix
Normal file
26
pkgs/development/libraries/libivykis/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, file, protobufc }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libivykis-${version}";
|
||||
|
||||
version = "0.39";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/libivykis/${version}/ivykis-${version}.tar.gz";
|
||||
sha256 = "11d7sjbhcll932rlvx9sf3vk60b5bazmjf4vlr4qd9cz0cashizz";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf automake libtool pkgconfig file protobufc ];
|
||||
|
||||
preConfigure = "autoreconf -i";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = ''
|
||||
A thin wrapper over various OS'es implementation of I/O readiness
|
||||
notification facilities
|
||||
'';
|
||||
license = licenses.zlib;
|
||||
maintainers = [ maintainers.rickynils ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
34
pkgs/tools/system/syslog-ng-incubator/default.nix
Normal file
34
pkgs/tools/system/syslog-ng-incubator/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, glib, syslogng
|
||||
, eventlog, perl, python, yacc, riemann_c_client, libivykis, protobufc }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "syslog-ng-incubator-${version}";
|
||||
|
||||
version = "0.3.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/balabit/syslog-ng-incubator/archive/${name}.tar.gz";
|
||||
sha256 = "0zr0vlp7cq3qfhqhalf7rdyd54skswxnc9j9wi8sfmz3psy3vd4y";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
autoconf automake libtool pkgconfig glib syslogng eventlog perl python
|
||||
yacc riemann_c_client libivykis protobufc
|
||||
];
|
||||
|
||||
preConfigure = "autoreconf -i";
|
||||
|
||||
configureFlags = [
|
||||
"--without-ivykis"
|
||||
"--with-riemann"
|
||||
"--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;
|
||||
};
|
||||
}
|
@ -647,6 +647,8 @@ let
|
||||
|
||||
syslogng = callPackage ../tools/system/syslog-ng { };
|
||||
|
||||
syslogng_incubator = callPackage ../tools/system/syslog-ng-incubator { };
|
||||
|
||||
rsyslog = callPackage ../tools/system/rsyslog { };
|
||||
|
||||
mcrypt = callPackage ../tools/misc/mcrypt { };
|
||||
@ -5201,6 +5203,8 @@ let
|
||||
useGTK = config.libiodbc.gtk or false;
|
||||
};
|
||||
|
||||
libivykis = callPackage ../development/libraries/libivykis { };
|
||||
|
||||
liblastfmSF = callPackage ../development/libraries/liblastfmSF { };
|
||||
|
||||
liblastfm = callPackage ../development/libraries/liblastfm { };
|
||||
|
Loading…
Reference in New Issue
Block a user