summary refs log tree commit diff
path: root/pkgs/tools/system/syslog-ng
diff options
context:
space:
mode:
authorAlexander V. Nikolaev <avn@avnik.info>2016-01-27 15:33:50 +0200
committerAlexander V. Nikolaev <avn@avnik.info>2016-01-27 15:37:19 +0200
commit61020943d1f8fcbffc39a5a9ee3b2357b1784e59 (patch)
treebb21815f5ec102516c25134264aa4cbced8281fa /pkgs/tools/system/syslog-ng
parentc53e932e5b77cea445cb4716768394ca5e04d4b7 (diff)
downloadnixlib-61020943d1f8fcbffc39a5a9ee3b2357b1784e59.tar
nixlib-61020943d1f8fcbffc39a5a9ee3b2357b1784e59.tar.gz
nixlib-61020943d1f8fcbffc39a5a9ee3b2357b1784e59.tar.bz2
nixlib-61020943d1f8fcbffc39a5a9ee3b2357b1784e59.tar.lz
nixlib-61020943d1f8fcbffc39a5a9ee3b2357b1784e59.tar.xz
nixlib-61020943d1f8fcbffc39a5a9ee3b2357b1784e59.tar.zst
nixlib-61020943d1f8fcbffc39a5a9ee3b2357b1784e59.zip
syslog-ng: add explicit pcre build dependency
Diffstat (limited to 'pkgs/tools/system/syslog-ng')
-rw-r--r--pkgs/tools/system/syslog-ng/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/system/syslog-ng/default.nix b/pkgs/tools/system/syslog-ng/default.nix
index 4fcc0680ada6..d98f05c6aabb 100644
--- a/pkgs/tools/system/syslog-ng/default.nix
+++ b/pkgs/tools/system/syslog-ng/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, eventlog, pkgconfig, glib, python, systemd, perl
-, riemann_c_client, protobufc, yacc }:
+, riemann_c_client, protobufc, pcre, yacc }:
 
 stdenv.mkDerivation rec {
   name = "syslog-ng-${version}";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
     sha256 = "0qc21mwajk6xrra3gqy2nvaza5gq62psamq4ayphj7lqabdglizg";
   };
 
-  buildInputs = [ eventlog pkgconfig glib python systemd perl riemann_c_client protobufc yacc ];
+  buildInputs = [ eventlog pkgconfig glib python systemd perl riemann_c_client protobufc yacc pcre ];
 
   configureFlags = [
     "--enable-dynamic-linking"