2020-07-18 16:06:22 +00:00
|
|
|
{ lib, fetchurl, buildDunePackage
|
2021-05-20 23:08:51 +00:00
|
|
|
, ppx_sexp_conv, base64, jsonm, re, stringext, uri-sexp
|
2021-03-19 17:17:44 +00:00
|
|
|
, ocaml, fmt, alcotest
|
2022-07-14 12:49:19 +00:00
|
|
|
, crowbar
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
2021-02-05 17:12:51 +00:00
|
|
|
pname = "cohttp";
|
2022-07-14 12:49:19 +00:00
|
|
|
version = "5.0.0";
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
minimalOCamlVersion = "4.08";
|
2023-01-20 10:41:00 +00:00
|
|
|
duneVersion = "3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
src = fetchurl {
|
2022-07-14 12:49:19 +00:00
|
|
|
url = "https://github.com/mirage/ocaml-cohttp/releases/download/v${version}/cohttp-${version}.tbz";
|
|
|
|
sha256 = "sha256-/W/0uGyBg1XWGzoIYoWW2/UX1qfabo7exIG7BlPKWgU=";
|
2021-02-05 17:12:51 +00:00
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
buildInputs = [ jsonm ppx_sexp_conv ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
propagatedBuildInputs = [ base64 re stringext uri-sexp ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
doCheck = true;
|
2023-02-09 11:40:11 +00:00
|
|
|
checkInputs = [ fmt alcotest crowbar ];
|
2021-03-19 17:17:44 +00:00
|
|
|
|
2021-02-05 17:12:51 +00: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";
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|