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,39 @@
{
buildDunePackage,
async,
ppx_sexp_conv,
ppx_here,
uri,
conduit,
core,
ipaddr,
ipaddr-sexp,
sexplib0,
}:
buildDunePackage {
pname = "conduit-async";
inherit (conduit)
version
src
;
buildInputs = [
ppx_sexp_conv
ppx_here
];
propagatedBuildInputs = [
async
conduit
uri
ipaddr
ipaddr-sexp
core
sexplib0
];
meta = conduit.meta // {
description = "Network connection establishment library for Async";
};
}

View File

@@ -0,0 +1,42 @@
{
lib,
fetchurl,
buildDunePackage,
ppx_sexp_conv,
sexplib0,
astring,
uri,
ipaddr,
ipaddr-sexp,
}:
buildDunePackage rec {
pname = "conduit";
version = "8.0.0";
minimalOCamlVersion = "4.13";
src = fetchurl {
url = "https://github.com/mirage/ocaml-conduit/releases/download/v${version}/conduit-${version}.tbz";
hash = "sha256-CmPZEIZbVHOJOhcM2lH2E4j0iOz0xLLtf+nsTiz2b2E=";
};
propagatedBuildInputs = [
astring
ipaddr
ipaddr-sexp
sexplib0
uri
ppx_sexp_conv
];
meta = {
description = "Network connection establishment library";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [
alexfmpe
vbgl
];
homepage = "https://github.com/mirage/ocaml-conduit";
};
}

View File

@@ -0,0 +1,42 @@
{
buildDunePackage,
conduit-lwt,
ppx_sexp_conv,
lwt,
uri,
ipaddr,
ipaddr-sexp,
ca-certs,
logs,
lwt_ssl,
lwt_log,
ssl,
}:
buildDunePackage {
pname = "conduit-lwt-unix";
inherit (conduit-lwt) version src;
buildInputs = [ ppx_sexp_conv ];
propagatedBuildInputs = [
conduit-lwt
lwt
uri
ipaddr
ipaddr-sexp
ca-certs
logs
lwt_ssl
];
doCheck = true;
checkInputs = [
lwt_log
ssl
];
meta = conduit-lwt.meta // {
description = "Network connection establishment library for Lwt_unix";
};
}

View File

@@ -0,0 +1,24 @@
{
buildDunePackage,
ppx_sexp_conv,
conduit,
lwt,
sexplib0,
}:
buildDunePackage {
pname = "conduit-lwt";
inherit (conduit) version src;
buildInputs = [ ppx_sexp_conv ];
propagatedBuildInputs = [
conduit
lwt
sexplib0
];
meta = conduit.meta // {
description = "Network connection establishment library for Lwt";
};
}

View File

@@ -0,0 +1,55 @@
{
buildDunePackage,
conduit-lwt,
ppx_sexp_conv,
sexplib0,
uri,
cstruct,
mirage-flow,
mirage-flow-combinators,
mirage-crypto-rng,
mirage-ptime,
mirage-mtime,
dns-client-mirage,
vchan,
xenstore,
tls,
tls-mirage,
ipaddr,
ipaddr-sexp,
tcpip,
ca-certs-nss,
}:
buildDunePackage {
pname = "conduit-mirage";
inherit (conduit-lwt) version src;
nativeBuildInputs = [ ppx_sexp_conv ];
propagatedBuildInputs = [
sexplib0
uri
cstruct
mirage-ptime
mirage-mtime
mirage-flow
mirage-flow-combinators
mirage-crypto-rng
dns-client-mirage
conduit-lwt
vchan
xenstore
tls
tls-mirage
ipaddr
ipaddr-sexp
tcpip
ca-certs-nss
];
meta = conduit-lwt.meta // {
description = "Network connection establishment library for MirageOS";
};
}