uacme: init at 1.7.1

This commit is contained in:
Malte Voos 2022-05-14 13:47:16 +02:00
parent 413378694f
commit e83b0e9649
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{ lib
, stdenv
, fetchFromGitHub
, asciidoc
, autoconf-archive
, autoreconfHook
, pkg-config
, curl
, openssl
}:
stdenv.mkDerivation rec {
pname = "uacme";
version = "1.7.1";
src = fetchFromGitHub {
owner = "ndilieto";
repo = "uacme";
rev = "v${version}";
hash = "sha256-QCI34B/C4vZ3hNnp06NIScY03RTZ0EZBl2HPnQjjtnc=";
};
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;
maintainers = with maintainers; [ malvo ];
};
}

View file

@ -34730,6 +34730,8 @@ with pkgs;
tvheadend = callPackage ../servers/tvheadend { };
uacme = callPackage ../tools/admin/uacme { };
ums = callPackage ../servers/ums { };
unity3d = callPackage ../development/tools/unity3d {