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

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

45 lines
836 B
Nix
Raw Normal View History

2022-05-14 13:47:16 +02:00
{ lib
, stdenv
, fetchFromGitHub
, asciidoc
, autoconf-archive
, autoreconfHook
, pkg-config
, curl
, openssl
}:
stdenv.mkDerivation rec {
pname = "uacme";
2024-01-30 08:35:01 +01:00
version = "1.7.5";
2022-05-14 13:47:16 +02:00
src = fetchFromGitHub {
owner = "ndilieto";
repo = "uacme";
rev = "v${version}";
2024-01-30 08:35:01 +01:00
hash = "sha256-MaPMNAUuQmJAbl7qBqNCkzW4k6nkibezEMRaCho5I68=";
2022-05-14 13:47:16 +02: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 15:05:51 +01:00
maintainers = with maintainers; [ malte-v ];
2024-02-05 14:23:27 +01:00
platforms = platforms.unix;
broken = stdenv.isDarwin;
2022-05-14 13:47:16 +02:00
};
}