a8b59789d0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
37 lines
1.2 KiB
Nix
37 lines
1.2 KiB
Nix
{ stdenv, fetchurl, openssh }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "nagios-plugins-${version}";
|
|
version = "2.0.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://nagios-plugins.org/download/${name}.tar.gz";
|
|
sha256 = "0jm0mn55hqwl8ffx8ww9mql2wrkhp1h2k8jw53q3h0ff5m22204g";
|
|
};
|
|
|
|
# !!! Awful hack. Grrr... this of course only works on NixOS.
|
|
# Anyway the check that configure performs to figure out the ping
|
|
# syntax is totally impure, because it runs an actual ping to
|
|
# localhost (which won't work for ping6 if IPv6 support isn't
|
|
# configured on the build machine).
|
|
preConfigure= "
|
|
configureFlagsArray=(
|
|
--with-ping-command='/var/setuid-wrappers/ping -n -U -w %d -c %d %s'
|
|
--with-ping6-command='/var/setuid-wrappers/ping6 -n -U -w %d -c %d %s'
|
|
)
|
|
";
|
|
|
|
postInstall = "ln -s libexec $out/bin";
|
|
|
|
# !!! make openssh a runtime dependency only
|
|
buildInputs = [ openssh ];
|
|
|
|
meta = {
|
|
description = "Official plugins for Nagios";
|
|
homepage = http://www.nagios.org/download/plugins;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ thoughtpolice relrod ];
|
|
};
|
|
}
|