checkSSLCert 2.78.0 -> 2.79.0 https://repology.org/project/check-ssl-cert/versions attrpath: checkSSLCert Checking auto update branch... No auto update branch exists Old version 2.78.0" not present in master derivation file with contents: { lib , stdenv , bc , bind # host and dig binary , coreutils # date and timeout binary , curl , fetchFromGitHub , file , iproute2 , makeWrapper , netcat-gnu , nmap , openssl , python3 , which }: stdenv.mkDerivation rec { pname = "check_ssl_cert"; version = "2.79.0"; src = fetchFromGitHub { owner = "matteocorti"; repo = "check_ssl_cert"; rev = "refs/tags/v${version}"; hash = "sha256-2NraUEUGyvmEdWCQdzZ5kf+sx/CnSZ54N3zRcCSYhBA="; }; 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 netcat-gnu python3 ] ++ lib.optional stdenv.isLinux iproute2) }" ''; 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; }; }