* Nagios plugins.

svn path=/nixpkgs/trunk/; revision=7571
This commit is contained in:
Eelco Dolstra 2007-01-08 18:55:23 +00:00
parent e6ab9b0070
commit 684951cb2e
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "nagios-plugins-1.4.5";
src = fetchurl {
url = http://kent.dl.sourceforge.net/sourceforge/nagiosplug/nagios-plugins-1.4.5.tar.gz;
md5 = "359afddaf6a8e3228a5130b60bed0f67";
};
}

View file

@ -2046,6 +2046,10 @@ rec {
inherit fetchurl stdenv perl;
};
nagiosPluginsOfficial = import ../servers/monitoring/nagios/plugins/official {
inherit fetchurl stdenv;
};
postgresql = import ../servers/sql/postgresql {
inherit fetchurl stdenv readline ncurses zlib;
};