Commit 548a22da authored by Anthony Roussel's avatar Anthony Roussel Committed by Anthony ROUSSEL
Browse files

nagiosPlugins.check_uptime: format with nixfmt-rfc-style

parent 7d7546cf
Loading
Loading
Loading
Loading
+14 −8
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
{
  autoreconfHook,
  fetchFromGitHub,
  lib,
  stdenv,
}:

stdenv.mkDerivation {
  pname = "check_uptime";
@@ -17,10 +22,11 @@ stdenv.mkDerivation {

  postInstall = "ln -sr $out/libexec $out/bin";

  meta = with lib; {
  meta = {
    description = "Uptime check plugin for Sensu/Nagios/others";
    homepage = "https://github.com/madrisan/nagios-plugins-uptime";
    license     = licenses.gpl3;
    maintainers = with maintainers; [ peterhoeg ];
    license = lib.licenses.gpl3;
    mainProgram = "check_uptime";
    maintainers = with lib.maintainers; [ peterhoeg ];
  };
}