liblogging: 1.0.4 -> 1.0.5
This commit is contained in:
parent
4933a34279
commit
76abe50fc4
|
@ -1,18 +1,29 @@
|
|||
{ stdenv, fetchurl, pkgconfig, systemd }:
|
||||
{ stdenv, fetchurl, pkgconfig
|
||||
, systemd ? null
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "liblogging-1.0.4";
|
||||
name = "liblogging-1.0.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.rsyslog.com/liblogging/${name}.tar.gz";
|
||||
sha256 = "075q6zjqpdlmaxhahd1ynr6nasqpyjnzj1zlcvzp3ixxm0m5vsxc";
|
||||
sha256 = "02w94j344q0ywlj4mdf9fnzwggdsn3j1yn43sdlsddvr29lw239i";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig systemd ];
|
||||
|
||||
meta = {
|
||||
configureFlags = [
|
||||
"--enable-rfc3195"
|
||||
"--enable-stdlog"
|
||||
(if systemd != null then "--enable-journal" else "--disable-journal")
|
||||
"--enable-man-pages"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.liblogging.org/;
|
||||
description = "Lightweight signal-safe logging library";
|
||||
license = stdenv.lib.licenses.bsd2;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue