2020-06-26 00:22:21 +03:00
|
|
|
{ lib, fetchurl, buildDunePackage
|
|
|
|
, ppx_fields_conv, ppx_sexp_conv, stdlib-shims
|
2019-08-22 00:12:52 +03:00
|
|
|
, base64, fieldslib, jsonm, re, stringext, uri-sexp
|
2016-11-12 11:55:42 +03:00
|
|
|
}:
|
2015-05-15 17:36:30 +03:00
|
|
|
|
2018-11-05 13:21:46 +03:00
|
|
|
buildDunePackage rec {
|
2021-01-21 03:24:35 +03:00
|
|
|
pname = "cohttp";
|
|
|
|
version = "2.5.4";
|
2020-06-29 12:02:01 +03:00
|
|
|
|
2021-01-21 03:24:35 +03:00
|
|
|
useDune2 = true;
|
2020-10-29 08:24:43 +03:00
|
|
|
|
2021-01-21 03:24:35 +03:00
|
|
|
minimumOCamlVersion = "4.04.1";
|
2015-05-15 17:36:30 +03:00
|
|
|
|
2021-01-21 03:24:35 +03:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/mirage/ocaml-cohttp/releases/download/v${version}/cohttp-v${version}.tbz";
|
|
|
|
sha256 = "1q04spmki5zis5p5m1vs77i3k7ijm134j62g61071vblwx25z17a";
|
|
|
|
};
|
2015-05-15 17:36:30 +03:00
|
|
|
|
2021-01-21 03:24:35 +03:00
|
|
|
buildInputs = [ jsonm ppx_fields_conv ppx_sexp_conv ];
|
2015-05-15 17:36:30 +03:00
|
|
|
|
2021-01-21 03:24:35 +03:00
|
|
|
propagatedBuildInputs = [ base64 fieldslib re stringext uri-sexp stdlib-shims ];
|
2015-05-15 17:36:30 +03:00
|
|
|
|
2021-01-21 03:24:35 +03:00
|
|
|
meta = {
|
|
|
|
description = "HTTP(S) library for Lwt, Async and Mirage";
|
|
|
|
license = lib.licenses.isc;
|
|
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
|
|
homepage = "https://github.com/mirage/ocaml-cohttp";
|
|
|
|
};
|
2015-05-15 17:36:30 +03:00
|
|
|
}
|