about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/monitoring/plugins/uptime.nix
blob: 79303849156a572c028d5748fbe82eee865b869d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchFromGitHub, autoreconfHook }:

stdenv.mkDerivation rec {
  pname = "check-uptime";
  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 ];
  };
}