3
0
Fork 0
forked from mirrors/nixpkgs

* Latest Nagios.

svn path=/nixpkgs/trunk/; revision=9608
This commit is contained in:
Eelco Dolstra 2007-11-08 18:17:56 +00:00
parent ed65d8b6ec
commit 4e8bf82213
2 changed files with 18 additions and 6 deletions

View file

@ -1,15 +1,21 @@
{ stdenv, fetchurl, perl }:
stdenv.mkDerivation {
name = "nagios-2.6";
name = "nagios-2.10";
src = fetchurl {
url = mirror://sourceforge/nagios/nagios-2.6.tar.gz;
md5 = "a032edba07bf389b803ce817e9406c02";
url = mirror://sourceforge/nagios/nagios-2.10.tar.gz;
md5 = "8c3a29e138f2ff8c8abbd3dd8a40c4b6";
};
patches = [./nagios.patch];
buildInputs = [perl];
buildFlags = "all";
installTargets = "install install-config";
meta = {
description = "A host, service and network monitoring program";
homepage = http://www.nagios.org/;
license = "GPL";
};
}

View file

@ -1,10 +1,16 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "nagios-plugins-1.4.5";
name = "nagios-plugins-1.4.10";
src = fetchurl {
url = mirror://sourceforge/nagiosplug/nagios-plugins-1.4.5.tar.gz;
md5 = "359afddaf6a8e3228a5130b60bed0f67";
url = mirror://sourceforge/nagiosplug/nagios-plugins-1.4.10.tar.gz;
sha256 = "0vm7sjiygxbfc5vbsi1g0dakpvynfzi86fhqx4yxd61brn0g8ghr";
};
meta = {
description = "Official plugins for Nagios";
homepage = http://www.nagios.org/;
license = "GPL";
};
}