nixpkgs/pkgs/tools/networking/acme-client/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
741 B
Nix
Raw Normal View History

2022-05-28 15:03:57 +00:00
{ lib
, stdenv
, fetchurl
2018-01-18 04:55:38 +00:00
, libbsd
, libressl
2021-01-17 03:51:22 +00:00
, pkg-config
2018-01-18 04:55:38 +00:00
}:
stdenv.mkDerivation rec {
pname = "acme-client";
2024-02-03 07:01:07 +00:00
version = "1.3.3";
2018-01-18 04:55:38 +00:00
src = fetchurl {
2022-05-28 15:03:57 +00:00
url = "https://data.wolfsden.cz/sources/acme-client-${version}.tar.gz";
2024-02-03 07:01:07 +00:00
hash = "sha256-HJOk2vlDD7ADrLdf/eLEp+teu9XN0KrghEe6y4FIDoI=";
2018-01-18 04:55:38 +00:00
};
2022-05-28 15:03:57 +00:00
nativeBuildInputs = [
pkg-config
];
2018-01-18 04:55:38 +00:00
2022-05-28 15:03:57 +00:00
buildInputs = [
libbsd
libressl
];
2018-01-18 04:55:38 +00:00
2022-05-28 15:03:57 +00:00
makeFlags = [
"PREFIX=${placeholder "out"}"
];
meta = with lib; {
2018-01-18 04:55:38 +00:00
description = "Secure ACME/Let's Encrypt client";
2024-03-07 10:02:46 +00:00
homepage = "https://git.wolfsden.cz/acme-client-portable";
2018-01-18 04:55:38 +00:00
platforms = platforms.unix;
license = licenses.isc;
maintainers = with maintainers; [ pmahoney ];
2024-02-11 02:19:15 +00:00
mainProgram = "acme-client";
2018-01-18 04:55:38 +00:00
};
}
2022-05-28 15:03:57 +00:00