2022-11-30T22:25:36 checkSSLCert 2.54.0 -> 2.55.0 https://github.com/matteocorti/check_ssl_cert/releases 2022-11-30T22:25:39 attrpath: checkSSLCert 2022-11-30T22:25:39 Checking auto update branch... 2022-11-30T22:25:39 No auto update branch exists 2022-11-30T22:25:39 Old version 2.54.0" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , file , openssl , makeWrapper , which , curl , bc , coreutils # date and timeout binary , bind # host and dig binary , nmap , iproute2 , netcat-gnu , python3 }: stdenv.mkDerivation rec { pname = "check_ssl_cert"; version = "2.55.0"; src = fetchFromGitHub { owner = "matteocorti"; repo = "check_ssl_cert"; rev = "v${version}"; hash = "sha256-7eMK1WYazxfqkwxAJyE4SyKukegkYOUd3AC7Y8A7EFA="; }; nativeBuildInputs = [ makeWrapper ]; makeFlags = [ "DESTDIR=$(out)/bin" "MANDIR=$(out)/share/man" ]; postInstall = '' wrapProgram $out/bin/check_ssl_cert \ --prefix PATH : "${lib.makeBinPath [ openssl file which curl bc coreutils bind nmap iproute2 netcat-gnu python3 ]}" ''; meta = with lib; { description = "Nagios plugin to check the CA and validity of an X.509 certificate"; homepage = "https://github.com/matteocorti/check_ssl_cert"; changelog = "https://github.com/matteocorti/check_ssl_cert/releases/tag/v${version}"; license = licenses.gpl3Plus; maintainers = with maintainers; [ fab ]; platforms = platforms.all; }; }