Files
nixpkgs/pkgs/development/ocaml-modules/conduit/default.nix

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

43 lines
770 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
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";
};
}