Upgrade rsyslog to latest (v7) stable release. Added liblogging (new dependency of rsyslog).

This commit is contained in:
Rob Vermaas
2014-07-07 16:23:54 +02:00
parent 51dc75b769
commit 83e1ff846c
3 changed files with 25 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, fetchurl, pkgconfig, systemd }:
stdenv.mkDerivation rec {
name = "liblogging-1.0.4";
src = fetchurl {
url = "http://download.rsyslog.com/liblogging/${name}.tar.gz";
sha256 = "075q6zjqpdlmaxhahd1ynr6nasqpyjnzj1zlcvzp3ixxm0m5vsxc";
};
buildInputs = [ pkgconfig systemd ];
meta = {
description = "Lightweight signal-safe logging library";
license = stdenv.lib.licenses.bsd2;
platforms = stdenv.lib.platforms.all;
};
}