about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/monitoring/plugins/uptime.nix
blob: 04a3ba18aa794915aa2304126373fbc112760d9a (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
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:

stdenv.mkDerivation {
  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 lib; {
    description = "Uptime check plugin for Sensu/Nagios/others";
    homepage    = "https://github.com/madrisan/nagios-plugins-uptime";
    license     = licenses.gpl3;
    maintainers = with maintainers; [ peterhoeg ];
  };
}