nixpkgs/pkgs/servers/monitoring/plugins/uptime.nix

27 lines
719 B
Nix
Raw Normal View History

2017-08-11 06:22:10 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "check-uptime";
2017-08-11 06:22:10 +00:00
version = "20161112";
src = fetchFromGitHub {
owner = "madrisan";
repo = "nagios-plugins-uptime";
rev = "51822dacd1d404b3eabf3b4984c64b2475ed6f3b";
sha256 = "18q9ibzqn97dsyr9xs3w9mqk80nmmfw3kcjidrdsj542amlsycyk";
};
nativeBuildInputs = [ autoreconfHook ];
enableParallelBuilding = true;
postInstall = "ln -sr $out/libexec $out/bin";
meta = with stdenv.lib; {
description = "Uptime check plugin for Sensu/Nagios/others";
homepage = https://github.com/madrisan/nagios-plugins-uptime;
license = licenses.gpl3;
maintainers = with maintainers; [ peterhoeg ];
2017-08-11 06:22:10 +00:00
};
}