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

38 lines
885 B
Nix
Raw Normal View History

2017-08-07 15:24:07 +00:00
{ stdenv, fetchFromGitHub, python2Packages }:
let
bName = "check_esxi_hardware";
2019-09-08 23:38:31 +00:00
pName = stdenv.lib.replaceStrings [ "_" ] [ "-" ] bName;
2017-08-07 15:24:07 +00:00
in python2Packages.buildPythonApplication rec {
name = "${pName}-${version}";
version = "20181001";
2017-08-07 15:24:07 +00:00
src = fetchFromGitHub {
owner = "Napsty";
repo = bName;
rev = version;
sha256 = "0azfacxcnnxxfqzrhh29k8cnjyr88gz35bi6h8fq931fl3plv10l";
2017-08-07 15:24:07 +00:00
};
dontBuild = true;
doCheck = false;
installPhase = ''
runHook preInstall
install -Dm755 -t $out/bin ${bName}.py
install -Dm644 -t $out/share/doc/${pName} README.md
runHook postInstall
'';
propagatedBuildInputs = with python2Packages; [ pywbem ];
meta = with stdenv.lib; {
homepage = https://www.claudiokuenzler.com/nagios-plugins/;
license = licenses.gpl2;
maintainers = with maintainers; [ peterhoeg ];
2017-08-07 15:24:07 +00:00
};
}