push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
{
buildDunePackage,
letsencrypt,
letsencrypt-dns,
cmdliner,
cohttp-lwt-unix,
logs,
fmt,
lwt,
mirage-crypto-rng,
ptime,
bos,
fpath,
randomconv,
}:
buildDunePackage {
pname = "letsencrypt-app";
minimalOCamlVersion = "4.08";
inherit (letsencrypt)
src
version
;
buildInputs = [
letsencrypt
letsencrypt-dns
cmdliner
cohttp-lwt-unix
logs
fmt
lwt
mirage-crypto-rng
ptime
bos
fpath
randomconv
];
meta = letsencrypt.meta // {
description = "ACME client implementation of the ACME protocol (RFC 8555) for OCaml";
mainProgram = "oacmel";
};
}

View File

@@ -0,0 +1,60 @@
{
buildDunePackage,
lib,
fetchurl,
uri,
base64,
digestif,
logs,
fmt,
lwt,
mirage-crypto,
mirage-crypto-ec,
mirage-crypto-pk,
x509,
yojson,
ounit2,
ptime,
domain-name,
}:
buildDunePackage rec {
pname = "letsencrypt";
version = "1.1.0";
src = fetchurl {
url = "https://github.com/mmaker/ocaml-letsencrypt/releases/download/v${version}/letsencrypt-${version}.tbz";
hash = "sha256-Iw55GffyG5tWA49hao1z9BX6p4N2+EKuhLIoOwG8EKM=";
};
minimalOCamlVersion = "4.08";
buildInputs = [
fmt
ptime
domain-name
];
propagatedBuildInputs = [
logs
yojson
lwt
base64
digestif
mirage-crypto
mirage-crypto-ec
mirage-crypto-pk
x509
uri
];
doCheck = true;
checkInputs = [ ounit2 ];
meta = {
description = "ACME implementation in OCaml";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.sternenseemann ];
homepage = "https://github.com/mmaker/ocaml-letsencrypt";
};
}

View File

@@ -0,0 +1,34 @@
{
buildDunePackage,
letsencrypt,
logs,
fmt,
lwt,
dns,
dns-tsig,
domain-name,
}:
buildDunePackage {
pname = "letsencrypt-dns";
minimalOCamlVersion = "4.08";
inherit (letsencrypt)
version
src
;
propagatedBuildInputs = [
letsencrypt
dns
dns-tsig
domain-name
logs
lwt
fmt
];
meta = letsencrypt.meta // {
description = "DNS solver for the ACME implementation in OCaml";
};
}

View File

@@ -0,0 +1,24 @@
{
buildDunePackage,
letsencrypt,
emile,
http-mirage-client,
paf,
}:
buildDunePackage {
pname = "letsencrypt-mirage";
inherit (letsencrypt) version src;
propagatedBuildInputs = [
emile
http-mirage-client
letsencrypt
paf
];
meta = letsencrypt.meta // {
description = "ACME implementation in OCaml for MirageOS";
};
}