2021-01-15 22:18:51 +00:00
|
|
|
{ lib, fetchurl, buildDunePackage
|
2020-07-18 16:06:22 +00:00
|
|
|
, ppx_sexp_conv, sexplib, astring, uri, logs
|
|
|
|
, ipaddr, ipaddr-sexp
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "conduit";
|
2020-07-18 16:06:22 +00:00
|
|
|
version = "2.2.2";
|
2020-11-30 08:33:03 +00:00
|
|
|
useDune2 = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
minimumOCamlVersion = "4.07";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/mirage/ocaml-conduit/releases/download/v2.2.2/conduit-v2.2.2.tbz";
|
|
|
|
sha256 = "1zb83w2pq9c8xrappfxa6y5q93772f5dj22x78camsm77a2c2z55";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
2020-07-18 16:06:22 +00:00
|
|
|
propagatedBuildInputs = [ astring ipaddr ipaddr-sexp sexplib uri ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = {
|
2020-09-25 04:45:31 +00:00
|
|
|
description = "A network connection establishment library";
|
2021-01-15 22:18:51 +00:00
|
|
|
license = lib.licenses.isc;
|
|
|
|
maintainers = with lib.maintainers; [ alexfmpe vbgl ];
|
2020-07-18 16:06:22 +00:00
|
|
|
homepage = "https://github.com/mirage/ocaml-conduit";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|