Upgrade rsyslog to latest (v7) stable release. Added liblogging (new dependency of rsyslog).
This commit is contained in:
18
pkgs/development/libraries/liblogging/default.nix
Normal file
18
pkgs/development/libraries/liblogging/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user