summary refs log tree commit diff
path: root/pkgs/tools/system/syslog-ng
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-08-04 15:59:21 +0000
committerPeter Simons <simons@cryp.to>2011-08-04 15:59:21 +0000
commit7d651a8ec322ede5e41e1a09db315a64d1ef987f (patch)
treee921200516ca9541769740f2e7e79e61ea7bae26 /pkgs/tools/system/syslog-ng
parent9f834cb8bd86e0f2a6eda6ef92e4b470a338e7e2 (diff)
downloadnixlib-7d651a8ec322ede5e41e1a09db315a64d1ef987f.tar
nixlib-7d651a8ec322ede5e41e1a09db315a64d1ef987f.tar.gz
nixlib-7d651a8ec322ede5e41e1a09db315a64d1ef987f.tar.bz2
nixlib-7d651a8ec322ede5e41e1a09db315a64d1ef987f.tar.lz
nixlib-7d651a8ec322ede5e41e1a09db315a64d1ef987f.tar.xz
nixlib-7d651a8ec322ede5e41e1a09db315a64d1ef987f.tar.zst
nixlib-7d651a8ec322ede5e41e1a09db315a64d1ef987f.zip
syslog-ng: the build doesn't find "glib" on platforms other than Linux
Glib is a buildInput, and it does work fine on Linux, but on other
platforms Hydra reports a build failure:

 | checking for GLIB - version >= 2.10.1... no
 | *** Could not run GLIB test program, checking why...
 | *** The test program failed to compile or link. See the file config.log for the
 | *** exact error that occured. This usually means GLIB is incorrectly installed.
 | configure: error: Cannot find GLIB version >= 2.10.1: is pkg-config in path?

I can't debug that problem, so opted to just disable those builds that
fail anyway.

svn path=/nixpkgs/trunk/; revision=28156
Diffstat (limited to 'pkgs/tools/system/syslog-ng')
-rw-r--r--pkgs/tools/system/syslog-ng/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/system/syslog-ng/default.nix b/pkgs/tools/system/syslog-ng/default.nix
index 584da1559b8e..f5ee2f1bcbba 100644
--- a/pkgs/tools/system/syslog-ng/default.nix
+++ b/pkgs/tools/system/syslog-ng/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
     description = "Next-generation syslogd with advanced networking and filtering capabilities.";
     license = "GPLv2";
 
-    platforms = stdenv.lib.platforms.unix;
+    platforms = stdenv.lib.platforms.linux;
     maintainers = [ stdenv.lib.maintainers.simons ];
   };
 }