mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
* Latest Nagios.
svn path=/nixpkgs/trunk/; revision=9608
This commit is contained in:
parent
ed65d8b6ec
commit
4e8bf82213
2 changed files with 18 additions and 6 deletions
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue