nixpkgs/pkgs/servers/monitoring/nagios/default.nix
Eelco Dolstra 0f6f60c92d * Enable GD support in Nagios.
svn path=/nixpkgs/trunk/; revision=9781
2007-11-23 16:44:43 +00:00

24 lines
580 B
Nix

{ stdenv, fetchurl, perl, gdSupport ? false
, gd ? null, libpng ? null, zlib ? null
}:
stdenv.mkDerivation {
name = "nagios-2.10";
src = fetchurl {
url = mirror://sourceforge/nagios/nagios-2.10.tar.gz;
md5 = "8c3a29e138f2ff8c8abbd3dd8a40c4b6";
};
patches = [./nagios.patch];
buildInputs = [perl] ++ (if gdSupport then [gd libpng zlib] else []);
buildFlags = "all";
installTargets = "install install-config";
meta = {
description = "A host, service and network monitoring program";
homepage = http://www.nagios.org/;
license = "GPL";
};
}