mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
uacme: init at 1.7.1
This commit is contained in:
parent
413378694f
commit
e83b0e9649
2 changed files with 44 additions and 0 deletions
42
pkgs/tools/admin/uacme/default.nix
Normal file
42
pkgs/tools/admin/uacme/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -34730,6 +34730,8 @@ with pkgs;
|
|||
|
||||
tvheadend = callPackage ../servers/tvheadend { };
|
||||
|
||||
uacme = callPackage ../tools/admin/uacme { };
|
||||
|
||||
ums = callPackage ../servers/ums { };
|
||||
|
||||
unity3d = callPackage ../development/tools/unity3d {
|
||||
|
|
Loading…
Reference in a new issue