diff --git a/pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix b/pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix index 7aa41d77146..bda2e5a54c1 100644 --- a/pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix +++ b/pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix @@ -1,29 +1,29 @@ { lib , stdenv +, bc +, bind # host and dig binary +, coreutils # date and timeout binary +, curl , fetchFromGitHub , file -, openssl -, makeWrapper -, which -, curl -, bc -, coreutils # date and timeout binary -, bind # host and dig binary -, nmap , iproute2 +, makeWrapper , netcat-gnu +, nmap +, openssl , python3 +, which }: stdenv.mkDerivation rec { pname = "check_ssl_cert"; - version = "2.66.0"; + version = "2.68.0"; src = fetchFromGitHub { owner = "matteocorti"; repo = "check_ssl_cert"; - rev = "v${version}"; - hash = "sha256-sk0t/oy8YsTcYSMKtSsC3apGp8LNa9AUggHrHKd75pw="; + rev = "refs/tags/v${version}"; + hash = "sha256-yigg2C1FkdS/O+GCAkbQhXwARO0583V8MREzVCNsoGA="; }; nativeBuildInputs = [