nixpkgs/pkgs/tools/admin/uacme/default.nix

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

43 lines
774 B
Nix
Raw Normal View History

2022-05-14 11:47:16 +00:00
{ lib
, stdenv
, fetchFromGitHub
, asciidoc
, autoconf-archive
, autoreconfHook
, pkg-config
, curl
, openssl
}:
stdenv.mkDerivation rec {
pname = "uacme";
2023-03-07 03:21:49 +00:00
version = "1.7.4";
2022-05-14 11:47:16 +00:00
src = fetchFromGitHub {
owner = "ndilieto";
repo = "uacme";
rev = "v${version}";
2023-03-07 03:21:49 +00:00
hash = "sha256-ywir6wLZCTgb7SurJ5S/1UIV1Lw4/Er1wwdgl630Eso=";
2022-05-14 11:47:16 +00:00
};
configureFlags = [ "--with-openssl" ];
nativeBuildInputs = [
asciidoc
autoconf-archive
autoreconfHook
pkg-config
];
buildInputs = [
curl
openssl
];
meta = with lib; {
description = "ACMEv2 client written in plain C with minimal dependencies";
homepage = "https://github.com/ndilieto/uacme";
license = licenses.gpl3Plus;
2023-02-05 14:05:51 +00:00
maintainers = with maintainers; [ malte-v ];
2022-05-14 11:47:16 +00:00
};
}