Merge pull request #173008 from malte-v/init-uacme

This commit is contained in:
Artturi 2022-06-06 19:56:57 +03:00 committed by GitHub
commit 9a995f5c6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

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