acme-client: 1.2.0 -> 1.3.0

This commit is contained in:
Fabian Affolter 2022-05-28 17:03:57 +02:00
parent d91c644006
commit 91725b4e4c

View file

@ -1,31 +1,39 @@
{ lib, stdenv { lib
, stdenv
, fetchurl , fetchurl
, libbsd , libbsd
, libressl , libressl
, pkg-config , pkg-config
}: }:
with lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "acme-client"; pname = "acme-client";
version = "1.2.0"; version = "1.3.0";
src = fetchurl { src = fetchurl {
url = "https://data.wolfsden.cz/sources/acme-client-${version}.tar.xz"; url = "https://data.wolfsden.cz/sources/acme-client-${version}.tar.gz";
sha256 = "sha256-fRSYwQmyV0WapjUJNG0UGO/tUDNTGUraj/BWq/a1QTo="; hash = "sha256-rIeWZSOT+nPzLf2mDtOkN/wmCGffG4H6PCQb2Vxbxxk=";
}; };
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [
buildInputs = [ libbsd libressl ]; pkg-config
];
makeFlags = [ "PREFIX=${placeholder "out"}" ]; buildInputs = [
libbsd
libressl
];
meta = { makeFlags = [
homepage = "https://sr.ht/~graywolf/acme-client-portable/"; "PREFIX=${placeholder "out"}"
];
meta = with lib; {
description = "Secure ACME/Let's Encrypt client"; description = "Secure ACME/Let's Encrypt client";
homepage = "https://sr.ht/~graywolf/acme-client-portable/";
platforms = platforms.unix; platforms = platforms.unix;
license = licenses.isc; license = licenses.isc;
maintainers = with maintainers; [ pmahoney ]; maintainers = with maintainers; [ pmahoney ];
}; };
} }