forked from mirrors/nixpkgs
syslog-ng: Enable systemd support
This commit is contained in:
parent
f4b3bc0334
commit
41f5e0121c
1 changed files with 8 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, eventlog, pkgconfig, glib, python }:
|
{ stdenv, fetchurl, eventlog, pkgconfig, glib, python, systemd }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "syslog-ng-3.5.4.1";
|
name = "syslog-ng-3.5.4.1";
|
||||||
|
@ -8,8 +8,13 @@ stdenv.mkDerivation {
|
||||||
sha256 = "0rkgrmnyx1x6m3jw5n49k7r1dcg79lxh900g74rgvd3j86g9dilj";
|
sha256 = "0rkgrmnyx1x6m3jw5n49k7r1dcg79lxh900g74rgvd3j86g9dilj";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ eventlog pkgconfig glib python ];
|
buildInputs = [ eventlog pkgconfig glib python systemd ];
|
||||||
configureFlags = "--enable-dynamic-linking";
|
|
||||||
|
configureFlags = [
|
||||||
|
"--enable-dynamic-linking"
|
||||||
|
"--enable-systemd"
|
||||||
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://www.balabit.com/network-security/syslog-ng/";
|
homepage = "http://www.balabit.com/network-security/syslog-ng/";
|
||||||
|
|
Loading…
Add table
Reference in a new issue