Unverified Commit 9a995f5c authored by Artturi's avatar Artturi Committed by GitHub
Browse files

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

parents 312d9a00 e83b0e96
Loading
Loading
Loading
Loading
+42 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -34817,6 +34817,8 @@ with pkgs;
  tvheadend = callPackage ../servers/tvheadend { };
  uacme = callPackage ../tools/admin/uacme { };
  ums = callPackage ../servers/ums { };
  unity3d = callPackage ../development/tools/unity3d {