nixpkgs/pkgs/servers/monitoring/plugins/openvpn.nix
Peter Hoeg 5426932f7c
check-openvpn: init at 0.0.1 (#69301)
* check-openvpn: init at 0.0.1
2019-09-24 14:53:21 +08:00

23 lines
526 B
Nix

{ lib, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "check-openvpn";
version = "0.0.1";
src = fetchFromGitHub {
owner = "liquidat";
repo = "nagios-icinga-openvpn";
rev = version;
sha256 = "1vz3p7nckc5k5f06nm1xfzpykhyndh2dzyagmifrzg5k478p1lpm";
};
# no tests
doCheck = false;
meta = with lib; {
description = "A nagios/icinga/sensu check plugin for OpenVPN";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
};
}