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