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