checkSSLCert 2.68.0 -> 2.69.0 https://repology.org/project/check-ssl-cert/versions attrpath: checkSSLCert Checking auto update branch... No auto update branch exists Old version 2.68.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.69.0"; src = fetchFromGitHub { owner = "matteocorti"; repo = "check_ssl_cert"; rev = "refs/tags/v${version}"; hash = "sha256-85bm/CvD5Kp9HKpf9czkqSEDYwmm8W+zd/uc88fWzPQ="; }; 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; }; }