2019-04-06 14:54:37 +01:00
|
|
|
{ lib, fetchFromGitHub, buildDunePackage
|
2019-06-16 20:59:06 +01:00
|
|
|
, ppx_fields_conv, ppx_sexp_conv
|
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 {
|
|
|
|
pname = "cohttp";
|
2019-08-21 22:12:52 +01:00
|
|
|
version = "2.1.3";
|
2015-05-15 15:36:30 +01:00
|
|
|
|
2017-07-01 12:16:27 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mirage";
|
|
|
|
repo = "ocaml-cohttp";
|
|
|
|
rev = "v${version}";
|
2019-08-21 22:12:52 +01:00
|
|
|
sha256 = "16k4ldmz6ljryhr139adlma130frb5wh13qswkrwc5gxx6d2wh8d";
|
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
|
|
|
|
2019-08-21 22:12:52 +01:00
|
|
|
propagatedBuildInputs = [ base64 fieldslib re stringext uri-sexp ];
|
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 ];
|
2017-07-01 12:16:27 +01:00
|
|
|
inherit (src.meta) homepage;
|
|
|
|
};
|
2015-05-15 15:36:30 +01:00
|
|
|
}
|