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
43 lines
770 B
Nix
43 lines
770 B
Nix
{
|
|
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";
|
|
};
|
|
}
|