nixpkgs/pkgs/tools/networking/acme-client/default.nix
Ruud van Asseldonk bcf715a147 acme-client: 1.3.0 -> 1.3.1
This release is compatible with LibreSSL 3.5, but no longer with 3.4.
2022-08-11 23:02:15 +02:00

40 lines
709 B
Nix

{ lib
, stdenv
, fetchurl
, libbsd
, libressl
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "acme-client";
version = "1.3.1";
src = fetchurl {
url = "https://data.wolfsden.cz/sources/acme-client-${version}.tar.gz";
hash = "sha256-lMCDis4CZQF6YwZGzdWD92/S1yT2cEAXXlTAipYYxro=";
};
nativeBuildInputs = [
pkg-config
];
buildInputs = [
libbsd
libressl
];
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 ];
};
}