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,28 @@
{
buildDunePackage,
httpun-types,
angstrom,
bigstringaf,
faraday,
alcotest,
}:
buildDunePackage {
pname = "httpun";
inherit (httpun-types) src version;
propagatedBuildInputs = [
angstrom
bigstringaf
faraday
httpun-types
];
doCheck = true;
checkInputs = [ alcotest ];
meta = httpun-types.meta // {
description = "High-performance, memory-efficient, and scalable HTTP library for OCaml";
};
}

View File

@@ -0,0 +1,20 @@
{
buildDunePackage,
httpun,
gluten-eio,
}:
buildDunePackage {
pname = "httpun-eio";
inherit (httpun) src version;
propagatedBuildInputs = [
gluten-eio
httpun
];
meta = httpun.meta // {
description = "EIO support for httpun";
};
}

View File

@@ -0,0 +1,20 @@
{
buildDunePackage,
httpun-lwt,
gluten-lwt-unix,
}:
buildDunePackage {
pname = "httpun-lwt-unix";
inherit (httpun-lwt) version src;
propagatedBuildInputs = [
httpun-lwt
gluten-lwt-unix
];
meta = httpun-lwt.meta // {
description = "Lwt + Unix support for httpun";
};
}

View File

@@ -0,0 +1,24 @@
{
buildDunePackage,
httpun,
lwt,
gluten,
gluten-lwt,
}:
buildDunePackage {
pname = "httpun-lwt";
inherit (httpun) version src;
propagatedBuildInputs = [
gluten
gluten-lwt
httpun
lwt
];
meta = httpun.meta // {
description = "Lwt support for httpun";
};
}

View File

@@ -0,0 +1,25 @@
{
lib,
buildDunePackage,
fetchurl,
faraday,
}:
buildDunePackage rec {
pname = "httpun-types";
version = "0.2.0";
src = fetchurl {
url = "https://github.com/anmonteiro/httpun/releases/download/${version}/httpun-${version}.tbz";
hash = "sha256-os4n70yFro4cEAjR49Xok9ayEbk0WGod0pQvfbaHvSw=";
};
propagatedBuildInputs = [ faraday ];
meta = {
description = "Common HTTP/1.x types";
homepage = "https://github.com/anmonteiro/httpun";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.vbgl ];
};
}