mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 06:14:26 +03:00
* Latest Nagios.
svn path=/nixpkgs/trunk/; revision=9608
This commit is contained in:
parent
ed65d8b6ec
commit
4e8bf82213
@ -1,15 +1,21 @@
|
|||||||
{ stdenv, fetchurl, perl }:
|
{ stdenv, fetchurl, perl }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "nagios-2.6";
|
name = "nagios-2.10";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/nagios/nagios-2.6.tar.gz;
|
url = mirror://sourceforge/nagios/nagios-2.10.tar.gz;
|
||||||
md5 = "a032edba07bf389b803ce817e9406c02";
|
md5 = "8c3a29e138f2ff8c8abbd3dd8a40c4b6";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [./nagios.patch];
|
patches = [./nagios.patch];
|
||||||
buildInputs = [perl];
|
buildInputs = [perl];
|
||||||
buildFlags = "all";
|
buildFlags = "all";
|
||||||
installTargets = "install install-config";
|
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, fetchurl}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "nagios-plugins-1.4.5";
|
name = "nagios-plugins-1.4.10";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/nagiosplug/nagios-plugins-1.4.5.tar.gz;
|
url = mirror://sourceforge/nagiosplug/nagios-plugins-1.4.10.tar.gz;
|
||||||
md5 = "359afddaf6a8e3228a5130b60bed0f67";
|
sha256 = "0vm7sjiygxbfc5vbsi1g0dakpvynfzi86fhqx4yxd61brn0g8ghr";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Official plugins for Nagios";
|
||||||
|
homepage = http://www.nagios.org/;
|
||||||
|
license = "GPL";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user