nixpkgs/pkgs/servers/monitoring/nagios/default.nix
Eelco Dolstra e6ab9b0070 * Install the sample config files.
svn path=/nixpkgs/trunk/; revision=7570
2007-01-08 18:55:06 +00:00

16 lines
350 B
Nix

{ stdenv, fetchurl, perl }:
stdenv.mkDerivation {
name = "nagios-2.6";
src = fetchurl {
url = http://heanet.dl.sourceforge.net/sourceforge/nagios/nagios-2.6.tar.gz;
md5 = "a032edba07bf389b803ce817e9406c02";
};
patches = [./nagios.patch];
buildInputs = [perl];
buildFlags = "all";
installTargets = "install install-config";
}