Added syslog-ng (and the eventlog library that it depends on).

svn path=/nixpkgs/trunk/; revision=13988
This commit is contained in:
Peter Simons
2009-02-05 16:50:45 +00:00
parent b3ff9f5275
commit ecddd8b472
3 changed files with 45 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "eventlog-0.2.9";
src = fetchurl {
url = "http://www.balabit.com/downloads/files/eventlog/0.2/eventlog_0.2.9.tar.gz";
sha256 = "1cairmv47b66blrxwrgf4qwabfflak9b1dwkiyxnc9rj5svnq50m";
};
meta = {
description = "A new API to format and send structured log messages.";
homepage = "http://www.balabit.com/support/community/products/";
license = "BSD";
};
}