2009-02-05 16:50:45 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-09-09 17:06:31 +01:00
|
|
|
name = "eventlog-0.2.12";
|
|
|
|
|
2009-02-05 16:50:45 +00:00
|
|
|
src = fetchurl {
|
2010-09-09 17:06:31 +01:00
|
|
|
url = "http://www.balabit.com/downloads/files/eventlog/0.2/eventlog_0.2.12.tar.gz";
|
|
|
|
sha256 = "494dac8e01dc5ce323df2ad554d94874938dab51aa025987677b2bc6906a9c66";
|
2009-02-05 16:50:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Syslog event logger library";
|
|
|
|
longDescription = ''
|
|
|
|
The EventLog library aims to be a replacement of the simple syslog() API
|
|
|
|
provided on UNIX systems. The major difference between EventLog and
|
|
|
|
syslog is that EventLog tries to add structure to messages.
|
|
|
|
|
|
|
|
Where you had a simple non-structrured string in syslog() you have a
|
|
|
|
combination of description and tag/value pairs.
|
|
|
|
'';
|
2018-07-06 02:35:28 +01:00
|
|
|
homepage = https://www.balabit.com/support/community/products/;
|
2014-12-20 23:00:35 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2009-02-05 16:50:45 +00:00
|
|
|
};
|
|
|
|
}
|