ssl-cert-check: 3.31 -> 4.14

This commit is contained in:
Fabian Affolter 2021-04-27 13:39:38 +02:00 committed by tomberek
parent 5965c9e368
commit 11c2459f17
1 changed files with 23 additions and 21 deletions

View File

@ -1,38 +1,41 @@
{ lib, stdenv { lib
, stdenv
, coreutils
, fetchFromGitHub , fetchFromGitHub
, makeWrapper , findutils
, openssl , gawk
, which
, gnugrep , gnugrep
, gnused , gnused
, gawk , makeWrapper
, mktemp , mktemp
, coreutils , openssl
, findutils , which
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "ssl-cert-check"; pname = "ssl-cert-check";
version = "3.31"; version = "4.14";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Matty9191"; owner = "Matty9191";
repo = pname; repo = pname;
rev = "698c1996d05152cfaf2a1a3df4cc70482411fac8"; rev = "4056ceeab5abc0e39f4e0ea40cd54147253a3369";
sha256 = "0jvi9phs0ngfwrj9zixb03v9byavbwxx8xkp0h5m98qppn1kvl3n"; sha256 = "07k2n4l68hykraxvy030djc208z8rqff3kc7wy4ib9g6qj7s4mif";
}; };
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [
makeWrapper
];
buildInputs = [ buildInputs = [
openssl
which
gnugrep
mktemp
gawk
gnused
coreutils coreutils
findutils findutils
gawk
gnugrep
gnused
mktemp
openssl
which
]; ];
prePatch = '' prePatch = ''
@ -47,11 +50,10 @@ stdenv.mkDerivation rec {
''; '';
meta = with lib; { meta = with lib; {
description = "a Bourne shell script that can be used to report on expiring SSL certificates"; description = "Bourne shell script that can be used to report on expiring SSL certificates";
homepage = "https://github.com/Matty9191/ssl-cert-check"; homepage = "https://github.com/Matty9191/ssl-cert-check";
license = licenses.gpl2; license = licenses.gpl2Plus;
maintainers = [ maintainers.ryantm ]; maintainers = with maintainers; [ ryantm ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }